1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/thelounge_ynh.git synced 2024-09-03 20:35:54 +02:00
This commit is contained in:
ericgaspar 2021-07-02 22:51:08 +02:00
parent 8b4873cd4a
commit fb45999caf
No known key found for this signature in database
GPG key ID: 574F281483054D44
2 changed files with 3 additions and 2 deletions

View file

@ -26,7 +26,7 @@ module.exports = {
// For UNIX domain sockets, use `"unix:/absolute/path/to/file.sock"`.
//
// This value is set to `undefined` by default to listen on all interfaces.
host: undefined,
host: "127.0.0.1",
// ### `port`
//
@ -395,7 +395,7 @@ module.exports = {
// - `url`: A url of the form `ldaps://<ip>:<port>`.
// For plain connections, use the `ldap` scheme.
url: "ldap://127.0.0.1",
url: "ldap://127.0.0.1:389",
// - `primaryKey`: LDAP primary key. It is set to `"uid"` by default.
primaryKey: "uid",

View file

@ -134,6 +134,7 @@ pushd $final_path
ynh_use_nodejs
ynh_exec_warn_less yarn install
ynh_exec_warn_less NODE_ENV=production yarn build
ynh_exec_warn_less yarn link
popd
#=================================================