seafile back to nginx and jellyfin to domain in caddy
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user