frontend/nginx.conf
timerzz 43e2dff6a3
Some checks failed
Build image / build (push) Failing after 17s
feat 从之前的服务中将前端分离
2024-05-12 15:53:54 +08:00

21 lines
463 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;
}
location /api/v1 {
resolver 10.43.0.10 valid=10s; # 6.6.6.6 为自建DNS
proxy_pass http://ht-watcher;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}