mirror of
https://github.com/YunoHost-Apps/jenkins_ynh.git
synced 2024-09-03 19:26:18 +02:00
25 lines
703 B
Bash
25 lines
703 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)
|
|
port=$(sudo yunohost app setting jenkins port)
|
|
|
|
sudo sed -i "s/HTTP_PORT=.*/HTTP_PORT=$port/g" /etc/default/jenkins
|
|
|
|
sed -i "s@YNH_LOCATION@$path@g" ../conf/nginx.conf
|
|
sed -i "s@YNH_PORT@$port@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
|
|
|