A
A
Alexey Green2016-01-12 14:57:09
linux
Alexey Green, 2016-01-12 14:57:09

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

1 answer(s)
B
borodka_lenina, 2016-01-12
@lexforceterror

server {
        listen  80;
        server_name  site.com;
location /seafile {
                proxy_pass http://localhost:8000;
        }
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question