docker中安装mysql、redis、nginx

mysql

  docker run -d -p 3306:3306  -v /opt/docker_mysql/mysql_data:/var/lib/mysql  -e MYSQL_ROOT_PASSWORD=Zf123456. --name mysql mysql:5.7

 

redis

  docker run --name redis -p 6379:6379 -d redis:5.0.10 --requirepass "Zf123456." --bind 0.0.0.0 --protected-mode no --appendonly yes

 

nginx

  docker run -d -p 80:80  -v /opt/docker_nginx/conf.d:/etc/nginx/conf.d --name nginx nginx       用这个

    defalut.conf

   具体内容 

server {
listen 80;
listen [::]:80;
server_name 39.105.38.132;

#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;

location / {
root /usr/share/nginx/html;
index index.html index.htm;
}

location /blog {
root /usr/share/nginx/html;
index index.html index.htm;
rewrite (.*) http://liftsail.top:8082;
#proxy_pass http://blog/;
}

location /csd {
root /usr/share/nginx/html;
index index.html index.htm;
rewrite (.*) http://liftsail.top:8081;
#proxy_pass http://csd/;
}

#error_page 404 /404.html;

# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}

# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}

# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}

 

posted @ 2022-04-18 16:21  liftsail  阅读(69)  评论(0编辑  收藏  举报