1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/bludit_ynh.git synced 2024-09-03 18:06:13 +02:00
bludit_ynh/conf/nginx.conf

41 lines
1.2 KiB
Nginx Configuration File
Raw Normal View History

2020-10-14 12:53:53 +02:00
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
# Path to source
alias __INSTALL_DIR__/;
2020-10-14 12:53:53 +02:00
index index.php;
Upgrade (#30) * Testing (#17) * Update README.md * Use SVG badge * Smaal fixes * Cleaning up * [autopatch] Missing ynh_abort_if_errors in change_url scripts (#6) Co-authored-by: Yunohost-Bot <> * Update manifest.json * Update manifest.json * Fix * [autopatch] Update issue and PR templates (#8) Co-authored-by: Yunohost-Bot <> * Add templates * Update check_process * Add templates * Add screenshots * Post max size * Auto-update README * Update manifest.json * Auto-update README * Create updater.yml * Fix * Cleaning up * Fix * Update manifest.json * Update manifest.json * Auto-update README * Update manifest.json * Auto-update README * Upgrade to version 4.0.0-beta2 (#16) * Upgrade to v4.0.0-beta2 * Auto-update README Co-authored-by: yunohost-bot <yunohost-bot@users.noreply.github.com> Co-authored-by: Yunohost-Bot <> * 4.3 (#15) * Upgrade to v4.0.0-beta3 * Auto-update README * rc3 * Auto-update README * php8 * Update check_process * Fix demo link * Auto-update README * reorder * Auto-update README * Upgrade to bullseye * Auto-update README Co-authored-by: YunoHost Bot <yunohost-bot@users.noreply.github.com> Co-authored-by: Yunohost-Bot <> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: tituspijean <tituspijean@outlook.com> Co-authored-by: yunohost-bot <yunohost@yunohost.org> * Revert "Testing (#17)" (#25) This reverts commit 64a84a3dc702cfeb57bd93783b5829b0c2551e46. * 3.14.1 (#28) * 3.14.1 * Auto-update README * Update upgrade Co-authored-by: yunohost-bot <yunohost@yunohost.org> * Apply example_ynh * Auto-update README Co-authored-by: Éric Gaspar <46165813+ericgaspar@users.noreply.github.com> Co-authored-by: YunoHost Bot <yunohost-bot@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: tituspijean <tituspijean@outlook.com> Co-authored-by: yunohost-bot <yunohost@yunohost.org>
2022-09-23 07:47:49 +02:00
# Common parameter to increase upload size limit in conjunction with dedicated php-fpm file
2023-09-11 11:21:33 +02:00
client_max_body_size 256M;
2021-06-01 13:23:18 +02:00
2020-10-18 18:17:21 +02:00
if (!-e $request_filename) { rewrite ^ __PATH__/index.php last; }
2020-10-14 17:05:08 +02:00
2020-10-14 22:56:27 +02:00
#try_files $uri $uri/ /bludit//bludit/index.php?$args;
2020-10-14 17:05:08 +02:00
2020-10-15 10:18:56 +02:00
location __PATH__/bl-content/databases/ { deny all; }
location __PATH__/bl-content/workspaces/ { deny all; }
location __PATH__/bl-content/pages/ { deny all; }
location __PATH__/bl-kernel/*.php { deny all; }
2020-10-14 14:13:28 +02:00
2020-10-18 18:17:21 +02:00
#try_files $uri $uri/ index.php;
2020-10-14 12:53:53 +02:00
location ~ [^/]\.php(/|$) {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
2020-10-14 14:13:28 +02:00
fastcgi_pass unix:/var/run/php/php__PHPVERSION__-fpm-__NAME__.sock;
Upgrade (#30) * Testing (#17) * Update README.md * Use SVG badge * Smaal fixes * Cleaning up * [autopatch] Missing ynh_abort_if_errors in change_url scripts (#6) Co-authored-by: Yunohost-Bot <> * Update manifest.json * Update manifest.json * Fix * [autopatch] Update issue and PR templates (#8) Co-authored-by: Yunohost-Bot <> * Add templates * Update check_process * Add templates * Add screenshots * Post max size * Auto-update README * Update manifest.json * Auto-update README * Create updater.yml * Fix * Cleaning up * Fix * Update manifest.json * Update manifest.json * Auto-update README * Update manifest.json * Auto-update README * Upgrade to version 4.0.0-beta2 (#16) * Upgrade to v4.0.0-beta2 * Auto-update README Co-authored-by: yunohost-bot <yunohost-bot@users.noreply.github.com> Co-authored-by: Yunohost-Bot <> * 4.3 (#15) * Upgrade to v4.0.0-beta3 * Auto-update README * rc3 * Auto-update README * php8 * Update check_process * Fix demo link * Auto-update README * reorder * Auto-update README * Upgrade to bullseye * Auto-update README Co-authored-by: YunoHost Bot <yunohost-bot@users.noreply.github.com> Co-authored-by: Yunohost-Bot <> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: tituspijean <tituspijean@outlook.com> Co-authored-by: yunohost-bot <yunohost@yunohost.org> * Revert "Testing (#17)" (#25) This reverts commit 64a84a3dc702cfeb57bd93783b5829b0c2551e46. * 3.14.1 (#28) * 3.14.1 * Auto-update README * Update upgrade Co-authored-by: yunohost-bot <yunohost@yunohost.org> * Apply example_ynh * Auto-update README Co-authored-by: Éric Gaspar <46165813+ericgaspar@users.noreply.github.com> Co-authored-by: YunoHost Bot <yunohost-bot@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: tituspijean <tituspijean@outlook.com> Co-authored-by: yunohost-bot <yunohost@yunohost.org>
2022-09-23 07:47:49 +02:00
2020-10-14 12:53:53 +02:00
fastcgi_index index.php;
include fastcgi_params;
2020-10-14 14:13:28 +02:00
fastcgi_param REMOTE_USER $remote_user;
fastcgi_param PATH_INFO $fastcgi_path_info;
2020-10-14 12:53:53 +02:00
fastcgi_param SCRIPT_FILENAME $request_filename;
}
2020-10-15 10:18:56 +02:00
location ~ \.(jpg|jpeg|gif|png|css|js|ico|svg|eot|ttf|woff|woff2|otf)$ {
access_log off;
expires 30d;
}
2020-10-14 12:53:53 +02:00
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
}