Small fixes to FreshRSS config

This commit is contained in:
Maciej Jur 2023-07-17 15:42:00 +02:00
parent 821dec50c7
commit f9b36aee43
No known key found for this signature in database
GPG key ID: ADA3BF323198C639
2 changed files with 6 additions and 4 deletions

View file

@ -126,9 +126,8 @@
recommendedProxySettings = true; recommendedProxySettings = true;
virtualHosts = { virtualHosts = {
"kamoshi.org" = { "kamoshi.org" = {
default = true;
root = "/var/www/kamoshi.org"; root = "/var/www/kamoshi.org";
addSSL = true; forceSSL = true;
enableACME = true; enableACME = true;
}; };
}; };

View file

@ -5,7 +5,10 @@ in
{ {
services = { services = {
freshrss = { freshrss = {
defaultUser = "kamov"; enable = true;
defaultUser = "admin";
# There's something wrong with this
# Workaround: https://github.com/FreshRSS/FreshRSS/issues/1082
passwordFile = "/root/secrets/freshrss/password"; passwordFile = "/root/secrets/freshrss/password";
baseUrl = "https://${address}"; baseUrl = "https://${address}";
virtualHost = address; virtualHost = address;
@ -14,7 +17,7 @@ in
nginx = { nginx = {
enable = true; enable = true;
virtualHosts."${address}" = { virtualHosts."${address}" = {
addSSL = true; forceSSL = true;
enableACME = true; enableACME = true;
}; };
}; };