default.conf 603 B

123456789101112131415161718192021222324252627
  1. server {
  2. listen 80;
  3. # listen 443;
  4. # ssl on;
  5. # ssl_certificate /etc/nginx/ssl/server.crt;
  6. # ssl_certificate_key /etc/nginx/ssl/server.key;
  7. server_name localhost;
  8. #charset koi8-r;
  9. #access_log /var/log/nginx/host.access.log main;
  10. location / {
  11. root /usr/share/nginx/html;
  12. index index.html index.htm;
  13. }
  14. #error_page 404 /404.html;
  15. # redirect server error pages to the static page /50x.html
  16. #
  17. error_page 500 502 503 504 /50x.html;
  18. location = /50x.html {
  19. root /usr/share/nginx/html;
  20. }
  21. }