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

58 lines
1.4 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
2023-03-23 08:32:34 +01:00
alias __INSTALL_DIR__/;
2021-03-16 17:58:14 +01:00
index index.php;
client_max_body_size 100M;
rewrite ^__PATH__/(vendor|translations|build)/.* /index.php break;
2022-12-28 23:31:04 +01:00
try_files $uri /index.php;
2021-03-16 17:58:14 +01:00
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: *";
2022-03-14 20:24:14 +01:00
try_files $uri __PATH__/index.php;
2021-03-16 17:58:14 +01:00
}
# Mautic tracking code
location = __PATH__/mtc.js {
expires off;
default_type "application/javascript";
2022-03-14 20:07:08 +01:00
try_files $uri $uri/ __PATH__/index.php;
2021-03-16 17:58:14 +01:00
}
# Embedded forms
location = __PATH__/form/generate.js {
expires off;
default_type "application/javascript";
2022-03-14 20:07:08 +01:00
try_files $uri $uri/ __PATH__/index.php;
2021-03-16 17:58:14 +01:00
}
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
}