mirror of
https://github.com/YunoHost-Apps/collabora_ynh.git
synced 2024-09-03 18:16:25 +02:00
[fix] Nginx conf
This commit is contained in:
parent
ae1ea206c8
commit
56a755f77b
1 changed files with 38 additions and 8 deletions
|
@ -55,14 +55,44 @@ sudo apt-get install -yy loolwsd code-brand
|
||||||
# < "../sources/sql/mysql.init.sql"
|
# < "../sources/sql/mysql.init.sql"
|
||||||
### MySQL end ###
|
### MySQL end ###
|
||||||
|
|
||||||
# Modify Nginx configuration file and copy it to Nginx conf directory
|
|
||||||
nginx_conf=../conf/nginx.conf
|
|
||||||
# sed -i "s@YNH_WWW_PATH@$path_url@g" $nginx_conf
|
#=================================================
|
||||||
sed -i "s@YNH_WWW_ALIAS@$finalpath/@g" $nginx_conf
|
# NGINX CONFIGURATION
|
||||||
# If a dedicated php-fpm process is used:
|
#=================================================
|
||||||
# Don't forget to modify ../conf/nginx.conf accordingly or your app will not work!
|
|
||||||
# sed -i "s@YNH_WWW_APP@$app@g" $nginx_conf
|
# Create a dedicated nginx config
|
||||||
sudo cp $nginx_conf /etc/nginx/conf.d/$domain.d/$app.conf
|
ynh_nginx_config
|
||||||
|
|
||||||
|
#=================================================
|
||||||
|
# CREATE DEDICATED USER
|
||||||
|
#=================================================
|
||||||
|
|
||||||
|
# Create a system user
|
||||||
|
ynh_system_user_create $app
|
||||||
|
|
||||||
|
#=================================================
|
||||||
|
# PHP-FPM CONFIGURATION
|
||||||
|
#=================================================
|
||||||
|
|
||||||
|
# Create a dedicated php-fpm config
|
||||||
|
ynh_fpm_config
|
||||||
|
|
||||||
|
#=================================================
|
||||||
|
# SPECIFIC SETUP
|
||||||
|
#=================================================
|
||||||
|
# ...
|
||||||
|
#=================================================
|
||||||
|
|
||||||
|
#=================================================
|
||||||
|
# SETUP SYSTEMD
|
||||||
|
#=================================================
|
||||||
|
|
||||||
|
# Create a dedicated systemd config
|
||||||
|
ynh_systemd_config
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### PHP (can be removed if not used) ###
|
### PHP (can be removed if not used) ###
|
||||||
# If a dedicated php-fpm process is used:
|
# If a dedicated php-fpm process is used:
|
||||||
|
|
Loading…
Reference in a new issue