mirror of
https://github.com/FAUSheppy/no-secrets-athq-ansible
synced 2025-12-10 06:58:34 +01:00
fix: typo3 gateway
This commit is contained in:
@@ -1,7 +1,13 @@
|
||||
#log_format scripts '$fastcgi_path_info $document_root$fastcgi_script_name > $request';
|
||||
|
||||
server {
|
||||
#access_log /var/log/nginx/scripts.log scripts;
|
||||
|
||||
include fastcgi.conf;
|
||||
include fastcgi_params;
|
||||
listen 8080;
|
||||
index index.php index.html;
|
||||
root /var/www/html/public;
|
||||
root /var/www/atlantishq-cms/public/;
|
||||
|
||||
location ~ \.php$ {
|
||||
try_files $uri =404;
|
||||
@@ -9,8 +15,9 @@ server {
|
||||
fastcgi_pass 127.0.0.1:9000;
|
||||
fastcgi_index index.php;
|
||||
include fastcgi_params;
|
||||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||||
fastcgi_param PATH_INFO $fastcgi_path_info;
|
||||
add_header X-ATHQ-HANDLER cms;
|
||||
#fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||||
fastcgi_param SCRIPT_FILENAME /var/www/atlantishq-cms/public/index.php;
|
||||
#fastcgi_param PATH_INFO $fastcgi_path_info;
|
||||
add_header X-ATHQ-HANDLER cms always;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user