Jules_Werne's picture

Hello Jeremy,

I am also behind a Nginx reverse proxy. I can reach the Wordpress-Server through its Network-IP-Address from all sources including Safari on Mac and from my iPhone. However, if I try to access the website through its domain it does not work (Safari on Mac and iPhone). “The network connection was lost”. Other people experience the same problem when trying to access my site.

None of my browsers on iPhone work: Safari (17.0.3), Brave (1.57.2)

On macOS only Safari (16.4) does not work, but Brave does work (1.59.117)

On Windows and Android everything works.

This problem has been persisting for month, my website is only a placeholder, so I didn’t care that much. But now I want to replace it with a real website, so it’s a huge problem.

Which Nginx config do you mean exactly? Sorry, I’m not an expert in these things and I set up my NPM a long time ago with docker compose. Do you need this config or one from inside the container:

version: "3"

services:

  app:

    image: jc21/nginx-proxy-manager:latest

    restart: always

    ports:

      - 80:80

      - 81:81

      - 443:443

    volumes:

      - ./config.json:/app/config/production.json

      - ./data:/data

      - ./letsencrypt:/etc/letsencrypt

    depends_on:

      - db

    environment:

    # if you want pretty colors in your docker logs:

    - FORCE_COLOR=1

  db:

    image: mariadb:latest

    restart: always

    environment:

      MYSQL_ROOT_PASSWORD: "XXXX"

      MYSQL_DATABASE: "XXXX"

      MYSQL_USER: "XXXX"

      MYSQL_PASSWORD: "XXXX"

    volumes:

- ./data/mysql:/var/lib/mysql