nginx.conf 288 B

12345678910111213
  1. server {
  2. listen 80;
  3. server_name localhost;
  4. root /usr/share/nginx/html;
  5. index index.html;
  6. location / {
  7. try_files $uri $uri/ /index.html;
  8. }
  9. gzip on;
  10. gzip_types text/plain text/css application/json application/javascript text/xml application/xml;
  11. }