mirror of
https://github.com/YunoHost-Apps/ofbiz_ynh.git
synced 2024-09-03 19:46:33 +02:00
24 lines
736 B
Bash
24 lines
736 B
Bash
#!/bin/bash
|
|
|
|
#=================================================
|
|
# COMMON VARIABLES
|
|
#=================================================
|
|
|
|
#=================================================
|
|
# PERSONAL HELPERS
|
|
#=================================================
|
|
|
|
_ci_fix_nginx() {
|
|
# Ofbiz returns a 404 on its root, so let's redirect to another path also served
|
|
if [ "${PACKAGE_CHECK_EXEC:-0}" -eq 1 ]; then
|
|
echo 'rewrite ^/$ /catalog/;' >> "../conf/nginx.conf"
|
|
fi
|
|
}
|
|
|
|
#=================================================
|
|
# EXPERIMENTAL HELPERS
|
|
#=================================================
|
|
|
|
#=================================================
|
|
# FUTURE OFFICIAL HELPERS
|
|
#=================================================
|