diff options
| author | Michal Idziorek <m.i@gmx.at> | 2022-05-24 18:46:48 +0200 |
|---|---|---|
| committer | Michal Idziorek <m.i@gmx.at> | 2022-05-24 18:46:48 +0200 |
| commit | c44966d91f83734e29e6d13c93f62999621cced7 (patch) | |
| tree | 2fcc6ce3696b6ba8d1db842772b8973ed30f80b8 /nix/nixops/comet/configuration.nix | |
| parent | 5313959bcbf48e776b69611efe578508ea3059a0 (diff) | |
add sf com
Diffstat (limited to 'nix/nixops/comet/configuration.nix')
| -rw-r--r-- | nix/nixops/comet/configuration.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/nix/nixops/comet/configuration.nix b/nix/nixops/comet/configuration.nix index fcef47a..7fc401d 100644 --- a/nix/nixops/comet/configuration.nix +++ b/nix/nixops/comet/configuration.nix @@ -83,6 +83,18 @@ in globalRedirect = "www.idziorek.net"; }; + services.nginx.virtualHosts."www.softwarefools.com" = { + forceSSL = true; + enableACME = true; + root = "/var/www/www.softwarefools.com"; + }; + + services.nginx.virtualHosts."softwarefools.com" = { + forceSSL = true; + enableACME = true; + globalRedirect = "www.softwarefools.com"; + }; + # GITWEB services.gitweb.projectroot = "/var/lib/gitolite/repositories"; services.gitweb.gitwebTheme = true; |
