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 183B

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