prod.conf 377 B

123456789101112131415161718192021
  1. server {
  2. listen 80;
  3. server_name static.hiwavo.com;
  4. set $platform pc;
  5. root /home/www/dist/statement.hiwavo.com/;
  6. location =/favicon.ico {
  7. root /home/www/dist/statement.hiwavo.com;
  8. expires 30d;
  9. }
  10. location / {
  11. try_files $uri $uri/ /index.html;
  12. expires 30d;
  13. #rewrite ^(.*)$ /static/authpay.htm break;
  14. }
  15. }