[GH-ISSUE #620] Can't Access from HTTPS #281

Closed
opened 2026-02-26 10:31:34 +03:00 by kerem · 1 comment
Owner

Originally created by @juliettebee on GitHub (May 8, 2023).
Original GitHub issue: https://github.com/ONLYOFFICE/Docker-DocumentServer/issues/620

Hello, when I try to access OnlyOffice I'm unable to connect. My Docker-Compose is:

---
version: "2.1"
services:
  nextcloud:
    image: lscr.io/linuxserver/nextcloud:latest
    container_name: nextcloud
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=America/New_York
    ports:
      - 443:443
    volumes:
      - ./conf:/config
      - ./syncthing:/data
      - ./keys:/keys 
    restart: unless-stopped
    links:
      - db
  db:
    image: postgres 
    restart: always
    environment:
      POSTGRES_PASSWORD: <strong password>
      POSTGRES_USER: nextcloud
    volumes:
      - ./nextclouddb:/var/lib/postgresql/data
  onlyoffice-document-server: 
    image: onlyoffice/documentserver:latest
    restart: always
    environment:
      - JWT_SECRET=secret 
    ports:
      - 9980:443
    expose:
      - 443
    volumes:
      - ./keys:/app/onlyoffice/DocumentServer/data/

I'm able to access OnlyOffice when I have it set up with port 80, but I need to have it be on port 443. And my host OS is Ubuntu 22.04. Is there a way to fix this?

Originally created by @juliettebee on GitHub (May 8, 2023). Original GitHub issue: https://github.com/ONLYOFFICE/Docker-DocumentServer/issues/620 Hello, when I try to access OnlyOffice I'm unable to connect. My Docker-Compose is: ```yaml --- version: "2.1" services: nextcloud: image: lscr.io/linuxserver/nextcloud:latest container_name: nextcloud environment: - PUID=1000 - PGID=1000 - TZ=America/New_York ports: - 443:443 volumes: - ./conf:/config - ./syncthing:/data - ./keys:/keys restart: unless-stopped links: - db db: image: postgres restart: always environment: POSTGRES_PASSWORD: <strong password> POSTGRES_USER: nextcloud volumes: - ./nextclouddb:/var/lib/postgresql/data onlyoffice-document-server: image: onlyoffice/documentserver:latest restart: always environment: - JWT_SECRET=secret ports: - 9980:443 expose: - 443 volumes: - ./keys:/app/onlyoffice/DocumentServer/data/ ``` I'm able to access OnlyOffice when I have it set up with port 80, but I need to have it be on port 443. And my host OS is Ubuntu 22.04. Is there a way to fix this?
kerem closed this issue 2026-02-26 10:31:34 +03:00
Author
Owner

@juliettebee commented on GitHub (May 8, 2023):

Ignore this, I found a way to resolve with this

<!-- gh-comment-id:1539189899 --> @juliettebee commented on GitHub (May 8, 2023): Ignore this, I found a way to resolve with [this](https://github.com/ONLYOFFICE/Docker-DocumentServer/issues/347)
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/Docker-DocumentServer-ONLYOFFICE#281
No description provided.