Angular Web App
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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