1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| server{ listen 80; server_name localhost huai-xhy.site; # 博客路有 charset utf-8;
location / { # 此处一定要改成nginx容器中的目录地址,宿主机上的地址容器访问不到 # 命令必须用 root, 不能用 alias root /usr/share/nginx/html/blogdist; try_files $uri $uri/ =404; index index.html index.htm; } #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 html; } }
|