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 }}";