Angular Web App
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

12345678910111213141516171819
  1. events{}
  2. http {
  3. include /etc/nginx/mime.types;
  4. server {
  5. listen 80;
  6. # listen 443;
  7. # ssl on;
  8. # ssl_certificate /etc/certificates/localhost.crt;
  9. # ssl_certificate_key /etc/certificates/localhost.key;
  10. # ssl_ciphers HIGH:!aNULL:!MD5;
  11. server_name localhost;
  12. root /usr/share/nginx/html;
  13. index index.html;
  14. location / {
  15. try_files $uri $uri/ /index.html;
  16. }
  17. }
  18. }