Angular Web App
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.
 
 
 
 
 
 

19 lines
509 B

  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. }