fix(camden): addSSL -> forceSSL for all pages
Change-Id: I451d1bc1a21d4ff25c0c70c963cf17bb924961db Reviewed-on: https://cl.tvl.fyi/c/depot/+/84 Reviewed-by: lukegb <lukegb@tvl.fyi>
This commit is contained in:
parent
52c0be524e
commit
7bad1fe852
1 changed files with 4 additions and 4 deletions
|
@ -326,7 +326,7 @@ in lib.fix(self: {
|
||||||
default = true;
|
default = true;
|
||||||
useACMEHost = "tazj.in";
|
useACMEHost = "tazj.in";
|
||||||
root = depot.web.homepage;
|
root = depot.web.homepage;
|
||||||
addSSL = true;
|
forceSSL = true;
|
||||||
|
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
${depot.web.blog.oldRedirects}
|
${depot.web.blog.oldRedirects}
|
||||||
|
@ -357,7 +357,7 @@ in lib.fix(self: {
|
||||||
serverName = "tvl.fyi";
|
serverName = "tvl.fyi";
|
||||||
useACMEHost = "tvl.fyi";
|
useACMEHost = "tvl.fyi";
|
||||||
root = depot.web.tvl;
|
root = depot.web.tvl;
|
||||||
addSSL = true;
|
forceSSL = true;
|
||||||
|
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
add_header Strict-Transport-Security "max-age=31536000; includeSubDomains; preload" always;
|
add_header Strict-Transport-Security "max-age=31536000; includeSubDomains; preload" always;
|
||||||
|
@ -377,7 +377,7 @@ in lib.fix(self: {
|
||||||
virtualHosts.cgit = {
|
virtualHosts.cgit = {
|
||||||
serverName = "code.tvl.fyi";
|
serverName = "code.tvl.fyi";
|
||||||
useACMEHost = "tvl.fyi";
|
useACMEHost = "tvl.fyi";
|
||||||
addSSL = true;
|
forceSSL = true;
|
||||||
|
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
# Static assets must always hit the root.
|
# Static assets must always hit the root.
|
||||||
|
@ -395,7 +395,7 @@ in lib.fix(self: {
|
||||||
virtualHosts.cgit-old = {
|
virtualHosts.cgit-old = {
|
||||||
serverName = "git.tazj.in";
|
serverName = "git.tazj.in";
|
||||||
useACMEHost = "tazj.in";
|
useACMEHost = "tazj.in";
|
||||||
addSSL = true;
|
forceSSL = true;
|
||||||
|
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
return 301 https://code.tvl.fyi$request_uri;
|
return 301 https://code.tvl.fyi$request_uri;
|
||||||
|
|
Loading…
Reference in a new issue