Files
MaxKey/maxkey-web-frontend/maxkey-web-mgt-app/nginx.conf

17 lines
348 B
Nginx Configuration File
Raw Normal View History

2022-05-06 08:50:50 +08:00
#MaxKey Mgt Frontend Server
2022-05-05 17:13:16 +08:00
server {
2022-05-06 08:50:50 +08:00
listen 8526;
2022-05-05 17:13:16 +08:00
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}