Docker OnlyOffice-Nginx 111错误

Docker OnlyOffice-Nginx 111错误,nginx,docker,Nginx,Docker,我将OnlyOffice DocumentServer(docker版本)用于我的web应用程序。在线编辑器运行正常,但当试图编辑文档时,在线编辑器会说“下载失败” 执行该操作后,我的nginx错误日志中将出现以下错误: 2016/01/12 12:18:41 [error] 509#0: *230 connect() failed (111: Connection refused) while connecting to upstream, client: 172.17.0.3, server

我将OnlyOffice DocumentServer(docker版本)用于我的web应用程序。在线编辑器运行正常,但当试图编辑文档时,在线编辑器会说“下载失败”

执行该操作后,我的nginx错误日志中将出现以下错误:

2016/01/12 12:18:41 [error] 509#0: *230 connect() failed (111: Connection refused) while connecting to upstream, client: 172.17.0.3, server: , request: "GET /coauthoring/doc/LCFRY42GU6qpRha5jQ4G/c/info HTTP/1.1", upstream: "http://[::1]:8000/doc/LCFRY42GU6qpRha5jQ4G/c/info", host: "127.0.0.1", referrer: "http://127.0.0.1/OfficeWeb/apps/documenteditor/main/index.html?_dc=0&lang=en"
nginx.config:

user www-data;
worker_processes 4;
pid /run/nginx.pid;

events {
    worker_connections 768;
    # multi_accept on;
}

http {

    ##
    # Basic Settings
    ##

    sendfile on;
    tcp_nopush on;
    tcp_nodelay on;
    keepalive_timeout 65;
    types_hash_max_size 2048;
    # server_tokens off;

    # server_names_hash_bucket_size 64;
    # server_name_in_redirect off;

    include /etc/nginx/mime.types;
    default_type application/octet-stream;

    ##
    # Logging Settings
    ##

    access_log /var/log/nginx/access.log;
    error_log /var/log/nginx/error.log;

    ##
    # Gzip Settings
    ##

    gzip on;
    gzip_disable "msie6";

    # gzip_vary on;
    # gzip_proxied any;
    # gzip_comp_level 6;
    # gzip_buffers 16 8k;
    # gzip_http_version 1.1;
    # gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;

    ##
    # nginx-naxsi config
    ##
    # Uncomment it if you installed nginx-naxsi
    ##

    #include /etc/nginx/naxsi_core.rules;

    ##
    # nginx-passenger config
    ##
    # Uncomment it if you installed nginx-passenger
    ##

    #passenger_root /usr;
    #passenger_ruby /usr/bin/ruby;

    ##
    # Virtual Host Configs
    ##

    include /etc/nginx/conf.d/*.conf;
    include /etc/nginx/sites-enabled/*;
码头集装箱:

CONTAINER ID        IMAGE                        COMMAND                  CREATED             STATUS              PORTS                                                NAMES
a78b6511ed58        onlyoffice/communityserver   "/bin/sh -c 'bash -C "   4 hours ago         Up 4 hours          0.0.0.0:80->80/tcp, 0.0.0.0:443->443/tcp, 5222/tcp   trusting_leavitt
db2bf7758cf5        onlyoffice/documentserver    "/bin/sh -c 'bash -C "   4 hours ago         Up 4 hours          80/tcp, 443/tcp                                      onlyoffice-document-server

请问我可以在本地浏览器中运行编辑器吗?可以。你用的是哪个版本?版本不重要,但我更喜欢最新的版本。版本很重要!如果您使用的是ONLYOFFICE的企业版,请使用enterprise-install.sh脚本(wget)并遵循以下指南:。不同的是,如果不使用企业版,则必须手动运行docker容器!你能指导我如何手动运行docker容器吗?