From 56cbb652990a7cb133e0502d5ab4514e1f9320f6 Mon Sep 17 00:00:00 2001 From: lapineige Date: Sat, 10 Jun 2023 11:48:10 +0200 Subject: [PATCH] Use __PORT__ instead of fixed value --- conf/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index 53df681..d5ac03c 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -50,5 +50,5 @@ location ~ ^/(media|proxy) { # added some stuff that seirdy said to add to make me bullet proof. B-) https://akkoma.dev/AkkomaGang/akkoma/issues/547#issuecomment-9261 more_set_headers "Content-Security-Policy : script-src 'none'; default-src 'none'; upgrade-insecure-requests; base-uri 'none'; form-action 'none'; 'sandbox';"; - proxy_pass http://localhost:8095; + proxy_pass http://localhost:__PORT__; }