1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/sogo_ynh.git synced 2024-09-03 20:26:07 +02:00
sogo_ynh/scripts/_common.sh

63 lines
1.7 KiB
Bash
Raw Normal View History

2018-08-14 22:18:22 +02:00
#!/bin/bash
#=================================================
# SET ALL CONSTANTS
#=================================================
2022-01-14 23:57:33 +01:00
# dependencies used by the app
pkg_dependencies="sogo stunnel4 memcached"
2018-08-14 22:18:22 +02:00
#=================================================
# DEFINE ALL COMMON FONCTIONS
#=================================================
config_stunnel() {
ynh_add_config --template="stunnel.conf" --destination="/etc/stunnel/$app.conf"
2018-08-14 22:18:22 +02:00
# Enable stunnel at startup
ynh_replace_string --match_string "ENABLED=0" --replace_string "ENABLED=1" --target_file /etc/default/stunnel4
2018-08-14 22:18:22 +02:00
}
config_nginx() {
ynh_add_nginx_config
nginx_domain_path=/etc/nginx/conf.d/$domain.d/*
nginx_config_path="/etc/nginx/conf.d/$domain.d/$app.conf"
grep "/principals" $nginx_domain_path || echo "# For IOS 7
location = /principals/ {
rewrite ^ https://\$server_name/SOGo/dav;
allow all;
}
" >> "$nginx_config_path"
grep "/Microsoft-Server-ActiveSync" $nginx_domain_path || echo "# For ActiveSync
location /Microsoft-Server-ActiveSync/ {
proxy_pass http://127.0.0.1:$port/SOGo/Microsoft-Server-ActiveSync/;
}
" >> "$nginx_config_path"
grep "/.well-known/caldav" $nginx_domain_path || echo "# For Caldav
location /.well-known/caldav {
2019-01-29 09:19:08 +01:00
rewrite ^ https://\$server_name/SOGo/dav/;
}
" >> "$nginx_config_path"
2019-01-29 09:19:08 +01:00
grep "/.well-known/carddav" $nginx_domain_path || echo "# For Carddav
location /.well-known/carddav {
2019-01-29 09:19:08 +01:00
rewrite ^ https://\$server_name/SOGo/dav/;
}
" >> "$nginx_config_path"
2019-01-29 09:19:08 +01:00
ynh_store_file_checksum --file "$nginx_config_path"
2018-08-14 22:18:22 +02:00
systemctl reload nginx
}
set_permission() {
chown -R $app:$app /etc/$app
2018-09-01 23:31:06 +02:00
chmod u=rwX,g=rX,o= -R /etc/$app
2018-08-14 22:18:22 +02:00
chown -R $app:$app /var/log/$app
2018-09-01 23:31:06 +02:00
chmod u=rwX,g=rX,o= -R /var/log/$app
}