nginx.conf 150 B

123456789
  1. server {
  2. listen 80;
  3. location / {
  4. root /usr/share/nginx/html/;
  5. include /etc/nginx/mime.types;
  6. try_files $uri $uri/ /index.html;
  7. }
  8. }