mirror of
https://github.com/YunoHost-Apps/mineweb_ynh.git
synced 2024-09-03 19:45:54 +02:00
* Update check_process * Set badge to SVG * Set badge to SVG * Upgrade to 1.12.0 (#3) * Upgrade to 1.13.0 (#5) * Fix linter warnings * Update manifest.json * Cleaning up (#8) * Cleaning up * Update database.php * [autopatch] Update issue and PR templates (#10) * Testing (#9) * Fix linter warnings * [autopatch] Update issue and PR templates Co-authored-by: Éric Gaspar <46165813+ericgaspar@users.noreply.github.com> Co-authored-by: Yunohost-Bot <> * Fix (#11) * Fix * Update upgrade * 1.14.1 * Auto-update README * 1.14.3 * Auto-update README * 1.14.5 * Auto-update README * Update manifest.json * 1.14.9 (#15) * 1.14.9 * Update manifest.json * Auto-update README * 4.3 (#17) * 1.15.1 * Auto-update README * Bullseye (#20) * set relative path for --keep opt * Auto-update README * Fix * Update restore * Update restore Co-authored-by: yunohost-bot <yunohost@yunohost.org> * Update manifest.json * Auto-update README * Upgrade auto-updater (#22) * [autopatch] Upgrade auto-updater * Auto-update README --------- Co-authored-by: tituspijean <titus@pijean.ovh> * Version 2 (#23) * v2 * v2 * Auto-update README * fix * Update manifest.toml * Auto-update README * Update manifest.toml * Update backup --------- Co-authored-by: yunohost-bot <yunohost@yunohost.org> * Auto-update README * Update restore * cleaning --------- Co-authored-by: YunoHost Bot <yunohost-bot@users.noreply.github.com> Co-authored-by: Yunohost-Bot <> Co-authored-by: yunohost-bot <yunohost@yunohost.org> Co-authored-by: tituspijean <titus@pijean.ovh>
26 lines
730 B
Nginx Configuration File
26 lines
730 B
Nginx Configuration File
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
|
|
location __PATH__/ {
|
|
|
|
# Path to source
|
|
alias __INSTALL_DIR__/app/webroot/;
|
|
|
|
index index.php;
|
|
|
|
try_files $uri $uri/ __PATH__/__PATH__/index.php?$query_string;
|
|
|
|
location ~ \.php$ {
|
|
if (!-e $request_filename) {
|
|
rewrite ^__PATH__/?(.*)$ __PATH__/index.php?/$1 last;
|
|
break;
|
|
}
|
|
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;
|
|
}
|
|
|
|
# Include SSOWAT user panel.
|
|
include conf.d/yunohost_panel.conf.inc;
|
|
}
|