frontend/nginx.conf
timerzz d1275c3ce1
Some checks failed
Build image / build (push) Failing after 4s
feat 访问产品历史价格时进行url编码
2024-06-04 20:04:56 +08:00

16 lines
330 B
Nginx Configuration File

server {
listen 80;
server_name ht.timerzz.com;
#access_log /var/log/nginx/host.access.log main;
location / {
root /usr/share/dist;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}