You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

nginx.conf 131B

12345678
  1. server {
  2. listen 80;
  3. location / {
  4. root /usr/share/nginx/html;
  5. index index.html index.htm;
  6. try_files $uri $uri/ /index.html =404;
  7. }
  8. }