bert: Add gotosocial on social.chandlerswift.com
This commit is contained in:
parent
f2e7d24b2f
commit
510672f779
3 changed files with 33 additions and 0 deletions
28
bert/services/http/social.chandlerswift.com.nix
Normal file
28
bert/services/http/social.chandlerswift.com.nix
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
services.gotosocial = {
|
||||
enable = true;
|
||||
settings = {
|
||||
landing-page-user = "chandler";
|
||||
protocol = "https";
|
||||
host = "social.chandlerswift.com";
|
||||
account-domain = "chandlerswift.com";
|
||||
bind-address = "127.0.0.1";
|
||||
port = 8001;
|
||||
# log-timestamp-format = "";
|
||||
storage-local-base-path = "/srv/gotosocial/storage";
|
||||
db-type = "sqlite";
|
||||
db-address = "/srv/gotosocial/database.sqlite";
|
||||
};
|
||||
};
|
||||
systemd.tmpfiles.settings."10-social-chandlerswift-com" = {
|
||||
"/srv/gotosocial" = {
|
||||
d = {
|
||||
user = "gotosocial";
|
||||
};
|
||||
};
|
||||
};
|
||||
services.caddy.virtualHosts."social.chandlerswift.com".extraConfig = ''
|
||||
encode zstd gzip
|
||||
reverse_proxy localhost:8001
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue