nginx-test.conf 315 B

12345678910111213141516
  1. server {
  2. listen 80;
  3. server_name 0.0.0.0;
  4. autoindex on;
  5. location / {
  6. root /usr/share/nginx/html/test;
  7. index index.html index.htm;
  8. }
  9. # 错误页面配置
  10. error_page 500 502 503 504 /50x.html;
  11. location = /50x.html {
  12. root /usr/share/nginx/html;
  13. }
  14. }