neb/servers/apoc/docker-compose.d/custom/nginx/conf.d/baikal.conf

13 lines
274 B
Text
Raw Normal View History

2023-12-03 23:53:44 +01:00
server {
listen 80;
server_name baikal.ixvd.net;
# SSL is managed by certbot, no need for a ssl listen; it will be generated automagically!
# default html page
location / {
2023-12-03 23:57:34 +01:00
proxy_set_header Host $host;
2023-12-03 23:53:44 +01:00
proxy_pass http://baikal;
}
}