如何仅通过局域网在Windows上运行docker-onlyoffice-nextcloud

正如标题所示,我试图在 Windows的Docker桌面中使用 OnlyOffice 运行 nextcloud ,并且尝试配置 nginx 以接受通过 LAN 进行的连接,这样我就可以从网络上其他所有运行 Windows 10 的计算机连接到我的服务器。

尽管我已经阅读了许多互联网上类似问题的文章,但似乎没有一个特别的设置,我无法从这里弄清楚该怎么做。

到目前为止,我已经做到了:

1- Kitematic GUI 外,还安装了Windows社区版的 docker引擎。我使用的是Docker的默认容器,因此尚未安装VirtualBox。将docker配置为在我的“ D:/”驱动器上具有其“ DockerDesktop.vhdx”。

2-按照github页面上的说明安装 docker-onlyoffice-nextcloud https://github.com/ONLYOFFICE/docker-onlyoffice-nextcloud。我遇到了 nextcloud服务器无法访问 OnlyOffice服务器的问题,并设法通过打开 localhost:100 来“修复”该问题。 >使用 Kitematic OnlyOffice服务器上端口,并在 nextcloud服务器中配置 OnlyOffice应用以与其连接(使用nextcloud网络界面做到了这一点。

3-现在,我可以在主机上的 http://localhost/ 上访问nextcloud了,但是我没有运气从网络上的任何其他计算机。

问题:

我无法弄清楚是什么导致我无法本地连接到服务器,但我猜想这与 nginx服务器配置有关。

尝试过:

有人建议检查 nginx.conf ,以确保启用监听80; ,在我看来,它确实是这样。其他人建议在听80; 之后使用 server_name localhost; ,这似乎也没有任何作用。

我检查了Windows共享选项以打开网络发现,认为可能与它有关,但无济于事。

作为参考,以下是用于此设置的配置文件和脚本:

docker-compose.yml

version: '3'
services:
  app:
    container_name: app-server
    image: nextcloud:fpm
    stdin_open: true
    tty: true
    restart: always
    expose:
      - '80'
      - '9000'
    volumes:
      - app_data:/var/www/html
  onlyoffice-document-server:
    container_name: onlyoffice-document-server
    image: onlyoffice/documentserver:latest
    stdin_open: true
    tty: true
    restart: always
    expose:
      - '80'
      - '443'
    volumes:
      - document_data:/var/www/onlyoffice/Data
      - document_log:/var/log/onlyoffice
  nginx:
    container_name: nginx-server
    image: nginx
    stdin_open: true
    tty: true
    restart: always
    ports:
      - 80:80
      - 443:443
    volumes:
      - ./nginx.conf:/etc/nginx/nginx.conf
      - app_data:/var/www/html
volumes:
  document_data:
  document_log:
  app_data:
  mysql_data:

nginx.conf

user  www-data;
worker_processes  1;

error_log  /var/log/nginx/error.log warn;
pid        /var/run/nginx.pid;

events {
    worker_connections  1024;
}

http {

    upstream backend {
      server app-server:9000;
    }


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

    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    keepalive_timeout  65;

    map $http_host $this_host {
        "" $host;
        default $http_host;
    }

    map $http_x_forwarded_proto $the_scheme {
        default $http_x_forwarded_proto;
        "" $scheme;
    }

    map $http_x_forwarded_host $the_host {
       default $http_x_forwarded_host;
       "" $this_host;
    }

    server {
    listen 80;

        # Add headers to serve security related headers
        add_header strict-transport-security "max-age=15768000; includeSubDomains; preload;";
        add_header X-Content-Type-Options nosniff;
        add_header X-XSS-Protection "1; mode=block";
        add_header X-Robots-Tag none;
        add_header X-Download-Options noopen;
        add_header X-Permitted-Cross-Domain-Policies none;

        root /var/www/html;
        client_max_body_size 10G; # 0=unlimited - set max upload size
        fastcgi_buffers 64 4K;

        gzip off;

        index index.php;
        error_page 403 /core/templates/403.php;
        error_page 404 /core/templates/404.php;

        rewrite ^/.well-known/carddav /remote.php/dav/ permanent;
        rewrite ^/.well-known/caldav /remote.php/dav/ permanent;

        location = /robots.txt {
            allow all;
            log_not_found off;
            access_log off;
        }

        location ~ ^/(build|tests|config|lib|3rdparty|templates|data)/ {
            deny all;
        }

        location ~ ^/(?:\.|autotest|occ|issue|indie|db_|console) {
            deny all;
        }

        location / {
            rewrite ^/remote/(.*) /remote.php last;
            rewrite ^(/core/doc/[^\/]+/)$ $1/index.html;
            try_files $uri $uri/ =404;
        }

    location ~* ^/ds-vpath/ {
        rewrite /ds-vpath/(.*) /$1  break;
                proxy_pass http://onlyoffice-document-server;
                proxy_redirect     off;

                client_max_body_size 100m;

                proxy_http_version 1.1;
                proxy_set_header Upgrade $http_upgrade;
                proxy_set_header Connection "upgrade";

                proxy_set_header Host $http_host;
                proxy_set_header X-Real-IP $remote_addr;
                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                proxy_set_header X-Forwarded-Host $the_host/ds-vpath;
                proxy_set_header X-Forwarded-Proto $the_scheme;
        }

        location ~ \.php(?:$|/) {
            fastcgi_split_path_info ^(.+\.php)(/.+)$;
            include fastcgi_params;
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
            fastcgi_param PATH_INFO $fastcgi_path_info;
            fastcgi_param HTTPS off;
            fastcgi_param modHeadersAvailable true; #Avoid sending the security headers twice
            fastcgi_pass backend;
            fastcgi_intercept_errors on;
        }

        # Adding the cache control header for js and css files
        # Make sure it is BELOW the location ~ \.php(?:$|/) { block
        location ~* \.(?:css|js)$ {
            add_header Cache-Control "public,max-age=7200";
            # Add headers to serve security related headers
            add_header strict-transport-security "max-age=15768000; includeSubDomains; preload;";
            add_header X-Content-Type-Options nosniff;
            add_header X-Frame-Options "SAMEORIGIN";
            add_header X-XSS-Protection "1; mode=block";
            add_header X-Robots-Tag none;
            add_header X-Download-Options noopen;
            add_header X-Permitted-Cross-Domain-Policies none;
            # Optional: Don't log access to assets
            access_log off;
        }

        # Optional: Don't log access to other assets
        location ~* \.(?:jpg|jpeg|gif|bmp|ico|png|swf)$ {
            access_log off;
        }

    }
}

set_configuration.sh


set -x

docker exec -u www-data app-server php occ --no-warnings config:system:get trusted_domains >> trusted_domain.tmp

if ! grep -q "nginx-server" trusted_domain.tmp; then
    TRUSTED_INDEX=$(cat trusted_domain.tmp | wc -l);
    docker exec -u www-data app-server php occ --no-warnings config:system:set trusted_domains $TRUSTED_INDEX --value="nginx-server"
fi

rm trusted_domain.tmp

docker exec -u www-data app-server php occ --no-warnings app:install onlyoffice

docker exec -u www-data app-server php occ --no-warnings config:system:set onlyoffice DocumentServerUrl --value="/ds-vpath/"
docker exec -u www-data app-server php occ --no-warnings config:system:set onlyoffice DocumentServerInternalUrl --value="http://onlyoffice-document-server/"
docker exec -u www-data app-server php occ --no-warnings config:system:set onlyoffice StorageUrl --value="http://nginx-server/"```


  [1]: https://github.com/ONLYOFFICE/docker-onlyoffice-nextcloud
tianhongjie 回答:如何仅通过局域网在Windows上运行docker-onlyoffice-nextcloud

如果问题出在Windows防火墙中,请尝试将其禁用并测试连接以查看其是否有效。如果有效,请重新激活Windows防火墙,然后您可以继续按照以下说明进行操作:

1-单击“开始”,然后在主机PC上键入 Windows防火墙

2-单击具有高级安全性的Windows防火墙

3-在窗口左侧找到入站规则,然后右键单击它。

4-点击 New Rule .. (新规则)。,将出现一个新窗口。

5-在规则类型标签上选择端口,然后单击下一步

6-在协议和端口标签下,第一选择 TCP ,第二选择 Specific Local Ports ,并在文本框中输入 80 。点击下一步

7-在“ 操作”标签下,选择“ 允许连接”。

8-在个人资料标签下,选中选中所有复选框,然后点击下一步

9-在“ 名称”标签下,为您的规则命名,然后输入简短的描述,以记住创建原因。点击完成

此规则现在应该处于活动状态,并且您应该能够通过在同一网络的另一台计算机上键入其IP地址来连接到服务器。

请注意,我对主题的了解还不够,我正在学习。我正在使用此软件包来完成个人任务和学习,因此安全性对我来说不是什么大问题,而且我不知道从专家的角度来看,我的“解决方案”有多糟糕。

因此请谨慎行事。

来源:https://www.nextofwindows.com/allow-server-running-inside-wsl-to-be-accessible-outside-windows-10-host

本文链接:https://www.f2er.com/3161286.html

大家都在问