1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/lutim_ynh.git synced 2024-09-03 19:36:24 +02:00
This commit is contained in:
Maniack Crudelis 2015-03-20 18:27:58 +01:00
parent 72b867f061
commit 82548a52e5
2 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
location __PATH__ { location __PATH__/ {
if ($scheme = http) { if ($scheme = http) {
rewrite ^ https://$server_name$request_uri? permanent; rewrite ^ https://$server_name$request_uri? permanent;
} }

View file

@ -98,8 +98,8 @@ sudo sed -i "s@__PORT__@$port@g" /etc/nginx/conf.d/$domain.d/$app.conf
# Make app public or private # Make app public or private
sudo yunohost app setting $app skipped_uris -v "/" sudo yunohost app setting $app skipped_uris -v "/"
if [ "$is_public" = "No" ]; if [ "$is_public" = "No" ];
then # Si l'app est privée, seul le visionnage des images est public then # Si l'app est privée, seul le visionnage des images reste public
sudo yunohost app setting $app protected_regex -v "/stats$","/manifest.webapp$","/$","/d/.*$","/m/.*$" sudo yunohost app setting $app protected_regex -v "$path/stats$","$path/manifest.webapp$","$path/$","$path/d/.*$","$path/m/.*$"
# sudo yunohost app setting $app skipped_regex -v "$domain/$path/[0-9A-Za-z]{8}" # sudo yunohost app setting $app skipped_regex -v "$domain/$path/[0-9A-Za-z]{8}"
fi fi