nginx.conf 125 B

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