mirror of
https://github.com/YunoHost-Apps/jenkins_ynh.git
synced 2024-09-03 19:26:18 +02:00
22 lines
541 B
Bash
22 lines
541 B
Bash
#!/bin/bash
|
|
|
|
# Retrieve arguments
|
|
domain=$(sudo yunohost app setting jenkins domain)
|
|
path=$(sudo yunohost app setting jenkins path)
|
|
path=${path%/}
|
|
is_public=$(sudo yunohost app setting jenkins is_public)
|
|
|
|
sed -i "s@YNH_LOCATION@$path@g" ../conf/nginx.conf
|
|
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/jenkins.conf
|
|
|
|
|
|
if [ "$is_public" = "Yes" ];
|
|
then
|
|
sudo yunohost app setting jenkins unprotected_uris -v "/"
|
|
else
|
|
sudo yunohost app setting jenkins unprotected_uris -d
|
|
fi
|
|
|
|
sudo service nginx reload
|
|
sudo yunohost app ssowatconf
|
|
|