Hexo-Async-Offends/gateway/default.conf.template
offends 4cefd4b9d7
All checks were successful
continuous-integration/drone Build is passing
synchronization
2024-07-19 17:03:39 +08:00

16 lines
371 B
Plaintext

server {
listen 80;
server_name ${DOMAIN_NAME};
location / {
proxy_pass http://blog:4000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
location /twikoo {
proxy_pass http://blog-twikoo:8080;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}