Skip to content
This repository was archived by the owner on May 25, 2025. It is now read-only.

Commit d81977c

Browse files
committed
docs: typos; formatting
1 parent 74a0324 commit d81977c

File tree

1 file changed

+9
-16
lines changed

1 file changed

+9
-16
lines changed

README.md

Lines changed: 9 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ services:
5555
- "CLIENT_ID=meet.example.com" # <- OpenID Connect Client ID
5656
- "CLIENT_SECRET=SECURE_SECRET" # <- OpenID Connect Client secret
5757
# - 'ACR_VALUES=password email' # <- OpenID Context Authentication Context Requirements,
58-
# space seperated list of allowed actions (OPTIONAL), see
58+
# space separated list of allowed actions (OPTIONAL), see
5959
# https://github.com/MarcelCoding/jitsi-openid/issues/122
60-
# - 'SCOPES=openid email jitsi' # <- OpenID Scopes, space seperated list of scopes (OPTIONAL),
60+
# - 'SCOPES=openid email jitsi' # <- OpenID Scopes, space separated list of scopes (OPTIONAL),
6161
# default: openid email
6262
# - 'VERIFY_ACCESS_TOKEN_HASH=false # <- explicitly disable access token hash verification (OPTIONAL),
6363
# default: true
@@ -196,18 +196,14 @@ in
196196
services.jitsi-meet = {
197197
enable = true;
198198
199-
hostName = hostName;
200-
nginx = {
201-
enable = true;
202-
};
199+
inherit hostName;
200+
nginx.enable = true;
203201
secureDomain = {
204202
enable = true;
205203
authentication = "token";
206204
};
207205
208-
config = {
209-
tokenAuthUrl = "https://${ssoHostName}/room/{room}";
210-
};
206+
config.tokenAuthUrl = "https://${ssoHostName}/room/{room}";
211207
};
212208
213209
services.prosody = {
@@ -229,14 +225,11 @@ in
229225
};
230226
};
231227
232-
systemd.services.prosody = {
233-
environment = {
234-
# the token_verification module has some more lua dependencies
235-
LUA_PATH = "${pkgs.lua52Packages.basexx}/share/lua/5.2/?.lua;${pkgs.lua52Packages.cjson}/share/lua/5.2/?.lua;${pkgs.lua52Packages.luaossl}/share/lua/5.2/?.lua;${pkgs.lua52Packages.inspect}/share/lua/5.2/?.lua";
236-
LUA_CPATH = "${pkgs.lua52Packages.cjson}/lib/lua/5.2/?.so;${pkgs.lua52Packages.luaossl}/lib/lua/5.2/?.so";
237-
};
228+
systemd.services.prosody.environment = {
229+
# the token_verification module has some more lua dependencies
230+
LUA_PATH = "${pkgs.lua52Packages.basexx}/share/lua/5.2/?.lua;${pkgs.lua52Packages.cjson}/share/lua/5.2/?.lua;${pkgs.lua52Packages.luaossl}/share/lua/5.2/?.lua;${pkgs.lua52Packages.inspect}/share/lua/5.2/?.lua";
231+
LUA_CPATH = "${pkgs.lua52Packages.cjson}/lib/lua/5.2/?.so;${pkgs.lua52Packages.luaossl}/lib/lua/5.2/?.so";
238232
};
239-
240233
}
241234
```
242235

0 commit comments

Comments
 (0)