25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

13 satır
337B

  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;
  7. expires -1; # Set it to different value depending on your standard requirements
  8. }
  9. error_page 500 502 503 504 /50x.html;
  10. location = /50x.html {
  11. root /usr/share/nginx/html;
  12. }
  13. }