nginx.conf 224 B

123456789101112131415
  1. server {
  2. listen 80;
  3. server_name _;
  4. root /usr/share/nginx/html;
  5. index index.html;
  6. location / {
  7. try_files $uri $uri/ /index.html;
  8. }
  9. location = /robots.txt {
  10. access_log off;
  11. log_not_found off;
  12. }
  13. }