From 7cc5f53cad63a26bff8f4736e9a74d6c0a19c493 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Sat, 3 Oct 2020 09:53:48 -0500 Subject: [PATCH] Add line showing default ports for nginx. Fixes #1167 --- ansible/lemmy.yml | 1 + ansible/templates/nginx.conf | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/ansible/lemmy.yml b/ansible/lemmy.yml index b4187158f..28179ba41 100644 --- a/ansible/lemmy.yml +++ b/ansible/lemmy.yml @@ -79,6 +79,7 @@ lemmy_docker_image: "dessalines/lemmy:{{ lookup('file', 'VERSION') }}" lemmy_docker_ui_image: "dessalines/lemmy-ui:{{ lookup('file', 'VERSION') }}" lemmy_port: "8536" + lemmy_ui_port: "1235" pictshare_port: "8537" iframely_port: "8538" diff --git a/ansible/templates/nginx.conf b/ansible/templates/nginx.conf index 7f13259ad..03b139bb0 100644 --- a/ansible/templates/nginx.conf +++ b/ansible/templates/nginx.conf @@ -57,6 +57,10 @@ server { proxy_set_header Host $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + # The default ports: + # lemmy_ui_port: 1235 + # lemmy_port: 8536 + set $proxpass "http://0.0.0.0:{{ lemmy_ui_port }}"; if ($http_accept = "application/activity+json") { set $proxpass "http://0.0.0.0:{{ lemmy_port }}";