2
0

nginx.conf 398 B

123456789101112131415161718
  1. #MaxKey Frontend Server
  2. server {
  3. listen 8527;
  4. server_name localhost;
  5. location / {
  6. root /usr/share/nginx/html;
  7. index index.html index.htm;
  8. try_files $uri$args $uri$args/ /maxkey/index.html;
  9. #try_files $uri $uri/ /index.html;
  10. }
  11. error_page 500 502 503 504 /50x.html;
  12. location = /50x.html {
  13. root /usr/share/nginx/html;
  14. }
  15. }