From 55a2f176e67f244c50c0d71dc365f3ea00eb75bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?E=CC=81ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Mon, 8 May 2023 19:32:20 +0200 Subject: [PATCH] fix --- conf/.env | 2 +- conf/nginx.conf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/.env b/conf/.env index 45b7775..ac5ecf5 100644 --- a/conf/.env +++ b/conf/.env @@ -3,7 +3,7 @@ ## Minimum Configuration, these are required for installation -LEAN_APP_URL = 'https://__DOMAIN__' # Base URL, only needed for subfolder installation +LEAN_APP_URL = 'https://__DOMAIN__' # Base URL, only needed for subfolder installation LEAN_APP_URL_ROOT = '__PATH__' # Base of application withotu trailing slash (used for cookies), e.g, /leantime LEAN_DEBUG = 1 # Debug flag diff --git a/conf/nginx.conf b/conf/nginx.conf index 356ae5f..1ae6fd3 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -14,7 +14,7 @@ location __PATH__/ { client_max_body_size 50M; - #try_files $uri $uri/ __PATH__/index.php; + try_files $uri $uri/ __PATH__/index.php; location ~ [^/]\.php(/|$) { fastcgi_split_path_info ^(.+?\.php)(/.*)$;