ini Seafile Nginx配置文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ini Seafile Nginx配置文件相关的知识,希望对你有一定的参考价值。

upstream advert {
    server localhost:10001 fail_timeout=0;
}
upstream seafhttp {
    server localhost:10002 fail_timeout=0;
}


server {
    listen       8080;
    server_name  192.168.1.192;

    location / {
        if (!-f $request_filename) {
            proxy_pass http://advert;
            break;
        }
    }

}


server {
    listen       80;
    server_name  192.168.1.192;

    location /seafhttp {
        rewrite ^/seafhttp(.*)$ $1 break;
        proxy_pass http://127.0.0.1:10002;
        client_max_body_size 0;
        proxy_connect_timeout  36000s;
        proxy_read_timeout  36000s;
    }
}

以上是关于ini Seafile Nginx配置文件的主要内容,如果未能解决你的问题,请参考以下文章

centos6.8+nginx+python2.7.13配置seafile私有云盘

Centos7开机启动Seafile服务和Nginx服务

Seafile的配置

seafile设置开机自启

Centos 7 部署Seafile+Nginx

ini nginx的前后端分离配置文件