]> Untitled Git - lemmy.git/commitdiff
Update to fix nginx proxy config for Docker Installs (#2908)
authorJustin Gauthier <justin@justin-tech.com>
Mon, 5 Jun 2023 10:43:31 +0000 (06:43 -0400)
committerGitHub <noreply@github.com>
Mon, 5 Jun 2023 10:43:31 +0000 (12:43 +0200)
* Update to fix nginx proxy config

* Update docker-compose.yml - fix type

---------

Co-authored-by: Jax Gauthier <jax@gauthier.id>
docker/docker-compose.yml

index e33a3ecdcba6420c7da49c22c0d14f44fef95827..1305c73cf3bfc8a19712de0ef327f93e8e9825ad 100644 (file)
@@ -16,8 +16,8 @@ services:
       - lemmyexternalproxy
     ports:
       # actual and only port facing any connection from outside
-      - "1236:1236"
-      - "8536:8536"
+      # Note, change the left number if port 80 is already in use on your system (or you want to run a reverse proxy outside this config)
+      - "80:80"
     volumes:
       - ./nginx.conf:/etc/nginx/nginx.conf:ro,Z
     restart: always