From 468dbfcda6238846f84c3b1e4e6cad3365a6f509 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Thu, 2 Nov 2023 23:08:06 +0100 Subject: [PATCH] Fix nginx config --- conf/nginx.conf | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index 6a141fc..c885c94 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -1,23 +1,22 @@ -location __PATH__/ { +location __BASE_API_URL__/ { proxy_pass http://localhost:__PORT_SYNAPSE__; proxy_set_header X-Forwarded-For $remote_addr; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header Host $host; client_max_body_size __MAX_UPLOAD_SIZE__; - - # Use the specific path for the php file. It's more secure than global php path - location __PATH__/cas_server.php { - alias /var/www/__APP__/; - fastcgi_split_path_info ^(.+?\.php)(/.*)$; - fastcgi_pass unix:/run/php__PHPVERSION__-fpm-__NAME__.sock; - include fastcgi_params; - fastcgi_param REMOTE_USER $remote_user; - fastcgi_param PATH_INFO $fastcgi_path_info; - fastcgi_param SCRIPT_FILENAME cas_server.php; - } } +# Use the specific path for the php file. It's more secure than global php path +location __BASE_API_URL__/cas_server.php { + alias /var/www/__APP__/; + fastcgi_split_path_info ^(.+?\.php)(/.*)$; + fastcgi_pass unix:/run/php/php__PHPVERSION__-fpm-__NAME__.sock; + include fastcgi_params; + fastcgi_param REMOTE_USER $remote_user; + fastcgi_param PATH_INFO $fastcgi_path_info; + fastcgi_param SCRIPT_FILENAME cas_server.php; +} location /_synapse/ { proxy_pass http://localhost:__PORT_SYNAPSE__;