Move /srv/* into /srv/www/*

This commit is contained in:
Chandler Swift 2024-11-05 23:48:09 -06:00
parent 0e4a2c5b9d
commit fee81ed3c7
Signed by: chandlerswift
GPG key ID: A851D929D52FB93F
5 changed files with 10 additions and 10 deletions

View file

@ -3,10 +3,10 @@
services.caddy.virtualHosts."files.chandlerswift.com".extraConfig = ''
encode zstd gzip
file_server
root * /srv/files.chandlerswift.com
root * /srv/www/files.chandlerswift.com
'';
systemd.tmpfiles.settings."10-files-chandlerswift-com" = {
"/srv/files.chandlerswift.com" = {
"/srv/www/files.chandlerswift.com" = {
d = {};
};
};

View file

@ -3,12 +3,12 @@
services.caddy.virtualHosts."home.chandlerswift.com".extraConfig = ''
encode zstd gzip
file_server
root * /srv/home.chandlerswift.com
root * /srv/www/home.chandlerswift.com
reverse_proxy /grafana/* localhost:3000
# hide .git # ???
'';
systemd.tmpfiles.settings."10-home-chandlerswift-com" = {
"/srv/home.chandlerswift.com" = {
"/srv/www/home.chandlerswift.com" = {
d = {};
};
};

View file

@ -3,11 +3,11 @@
services.caddy.virtualHosts."maps.chandlerswift.com".extraConfig = ''
encode zstd gzip
file_server
root * /srv/maps.chandlerswift.com
root * /srv/www/maps.chandlerswift.com
# hide .git # ???
'';
systemd.tmpfiles.settings."10-maps-chandlerswift-com" = {
"/srv/maps.chandlerswift.com" = {
"/srv/www/maps.chandlerswift.com" = {
d = {};
};
};

View file

@ -2,7 +2,7 @@
let
app = "stjohnscccc";
domain = "${app}.chandlerswift.com"; # TODO
dataDir = "/srv/http/${domain}";
dataDir = "/srv/www/http/${domain}";
in {
services.phpfpm.pools.${app} = {
user = app;
@ -35,7 +35,7 @@ in {
};
users.groups.${app} = {};
systemd.tmpfiles.settings."10-stjohnscccc.org" = {
"/srv/stjohnscccc.org" = {
"/srv/www/stjohnscccc.org" = {
d = {};
};
};

View file

@ -3,10 +3,10 @@
services.caddy.virtualHosts."swiftgang.net".extraConfig = ''
encode zstd gzip
file_server
root * /srv/swiftgang.net
root * /srv/www/swiftgang.net
'';
systemd.tmpfiles.settings."10-swiftgang-net" = {
"/srv/swiftgang.net" = {
"/srv/www/swiftgang.net" = {
d = {};
};
};