diff --git a/conf/.env b/conf/.env index 2fa554a..4c8338c 100644 --- a/conf/.env +++ b/conf/.env @@ -4,7 +4,7 @@ ## Minimum Configuration, these are required for installation LEAN_APP_URL = 'https://__DOMAIN__' # Base URL, only needed for subfolder installation -LEAN_APP_URL_ROOT = '' # Base of application withotu trailing slash (used for cookies), e.g, /leantime +LEAN_APP_URL_ROOT = '' # Base of application without trailing slash (used for cookies), e.g, /leantime LEAN_DEBUG = 1 # Debug flag @@ -22,7 +22,7 @@ LEAN_DB_PORT = '3306' # Database port LEAN_SITENAME = 'Leantime' # Name of your site, can be changed later LEAN_LANGUAGE = '__LANGUAGE__' # Default language LEAN_DEFAULT_TIMEZONE = '__TIMEZONE__' # Set default timezone -LEAN_ENABLE_MENU_TYPE = false # Enable to specifiy menu on aproject by project basis +LEAN_ENABLE_MENU_TYPE = false # Enable to specifiy menu on a project by project basis LEAN_SESSION_PASSWORD = '3evBlq9zdUEuzKvVJHWWx3QzsQhturBApxwcws2m' #Salting sessions. Replace with a strong password LEAN_SESSION_EXPIRATION = 28800 # How many seconds after inactivity should we logout? 28800seconds = 8hours LEAN_LOG_PATH = null # Default Log Path (including filename), if not set /logs/error.log will be used diff --git a/conf/nginx.conf b/conf/nginx.conf index 6423ceb..0c612cd 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -13,7 +13,7 @@ location __PATH__/ { client_max_body_size 50M; - #try_files $uri $uri/ /index.php; + try_files $uri $uri/ /index.php; location ~ [^/]\.php(/|$) { fastcgi_split_path_info ^(.+?\.php)(/.*)$;