chore(nix): add OIDC app and webfinger redirect for Nextcloud
- Added OIDC app to Nextcloud with specific URL, SHA256, and license configuration for authentication support. - Configured Nginx to redirect `.well-known/webfinger` to Nextcloud for improved compatibility. - Updated Nextcloud settings to include `overwrite.cli.url` for proper URL handling.
This commit is contained in:
parent
325f3bafbe
commit
1f5d2c1ce5
2 changed files with 10 additions and 1 deletions
|
|
@ -23,11 +23,17 @@
|
||||||
spreed
|
spreed
|
||||||
tasks
|
tasks
|
||||||
;
|
;
|
||||||
|
oidc = pkgs.fetchNextcloudApp {
|
||||||
|
sha256 = "sha256-RFlPJFwqv7TEoTZUc2vhP4AB7hh619EQ7vRdM+HDoBw=";
|
||||||
|
url = "https://github.com/H2CK/oidc/releases/download/1.13.1/oidc-1.13.1.tar.gz";
|
||||||
|
license = "afl3";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
hostName = "nc.hoyer.xyz";
|
hostName = "nc.hoyer.xyz";
|
||||||
https = true;
|
https = true;
|
||||||
configureRedis = true;
|
configureRedis = true;
|
||||||
settings = {
|
settings = {
|
||||||
|
"overwrite.cli.url" = "https://nc.hoyer.xyz";
|
||||||
maintenance_window_start = "1";
|
maintenance_window_start = "1";
|
||||||
log_type = "file";
|
log_type = "file";
|
||||||
mail_smtpmode = "sendmail";
|
mail_smtpmode = "sendmail";
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, lib, ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
users.users.nginx.extraGroups = [ "acme" ];
|
users.users.nginx.extraGroups = [ "acme" ];
|
||||||
services.nginx = {
|
services.nginx = {
|
||||||
|
|
@ -54,6 +54,9 @@
|
||||||
locations."/stats" = {
|
locations."/stats" = {
|
||||||
basicAuthFile = "/var/www/hoyer.xyz/stats.htaccess";
|
basicAuthFile = "/var/www/hoyer.xyz/stats.htaccess";
|
||||||
};
|
};
|
||||||
|
locations."/.well-known/webfinger" = {
|
||||||
|
return = "307 https://nc.hoyer.xyz/.well-known/webfinger";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
"surfsite.org" = {
|
"surfsite.org" = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue