1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mautic_ynh.git synced 2024-09-03 19:36:26 +02:00
mautic_ynh/conf/nginx.conf

62 lines
1.6 KiB
Nginx Configuration File
Raw Normal View History

2021-03-16 17:58:14 +01:00
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
# Path to source
alias __FINALPATH__/;
index index.php;
client_max_body_size 100M;
#try_files $uri /index.php$is_args$args;
rewrite ^__PATH__/(vendor|translations|build)/.* /index.php break;
#if (!-e $request_filename) {
# rewrite ^__PATH__/(.*)$ __PATH__/index.php?q=$1 last;
#}
try_files $uri $uri/ index.php;
location ~ [^/]\.php(/|$) {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
fastcgi_pass unix:/var/run/php/php__PHPVERSION__-fpm-__NAME__.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param REMOTE_USER $remote_user;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param SCRIPT_FILENAME $request_filename;
}
# Deny yml, twig, markdown, init file access
location ~* __PATH__/(.*)\.(?:markdown|md|twig|yaml|yml|ht|htaccess|ini)$ {
deny all;
access_log off;
log_not_found off;
}
# Mautic tracking fallback
location = __PATH__/mtracking.gif {
expires off;
gzip off;
default_type "image/gif";
2021-05-29 19:34:31 +02:00
more_set_headers "Access-Control-Allow-Origin: *";
2021-03-16 17:58:14 +01:00
try_files $uri /index.php?$args;
}
# Mautic tracking code
location = __PATH__/mtc.js {
expires off;
default_type "application/javascript";
try_files $uri $uri/ /index.php$is_args$args;
}
# Embedded forms
location = __PATH__/form/generate.js {
expires off;
default_type "application/javascript";
try_files $uri $uri/ /index.php$is_args$args;
}
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
}