seafile back to nginx and jellyfin to domain in caddy

This commit is contained in:
2024-11-20 13:55:11 +01:00
parent d0f703472f
commit 0e8e8a13c6
4 changed files with 48 additions and 10 deletions

View File

@@ -87,3 +87,22 @@ server {
include /etc/nginx/conf/proxy.conf;
}
}
server {
# seafile
listen 80;
server_name seafile.rik.veenboer.xyz;
location / {
proxy_pass http://host:8100;
include /etc/nginx/conf/proxy.conf;
}
location /seafhttp {
rewrite ^/seafhttp(.*)$ $1 break;
proxy_pass http://host:8182;
client_max_body_size 0;
}
location /seafdav {
proxy_pass http://host:8180;
include /etc/nginx/conf/proxy.conf;
}
}