1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/couchdb_ynh.git synced 2024-09-03 18:16:11 +02:00

Merge remote-tracking branch 'origin/port' into exampe

This commit is contained in:
yalh76 2021-05-15 14:28:02 +02:00
commit a8ea5b4912
2 changed files with 4 additions and 3 deletions

View file

@ -2,3 +2,6 @@
[chttpd]
; prevent non admin users to be able to access the list of all databases
admin_only_all_dbs = true
; Defines the port number to listen:
port = __PORT__

View file

@ -60,9 +60,7 @@ ynh_app_setting_set --app=$app --key=password --value=$password
ynh_script_progression --message="Finding an available port..." --weight=2
# Find an available port
port="5984"
# NOTE: ideally, it would be nice to make sure that port 5984 is not taken, but if doing so, something should be done on couchdb install to customize the port it uses
# port=$(ynh_find_port --port=5984)
port=$(ynh_find_port --port=5984)
ynh_app_setting_set --app=$app --key=port --value=$port
#=================================================