Answer the question
In order to leave comments, you need to log in
How to redirect the Seafile web interface to a directory on NGINX port 80?
There is a Seafile daemon with webmord on port 8000
How to give webmord a directory in nginx on port 80 like: site.com/seafile ?
Answer the question
In order to leave comments, you need to log in
server {
listen 80;
server_name site.com;
location /seafile {
proxy_pass http://localhost:8000;
}
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question