diff --git a/letsencrypt/ctrlshift.gov.sg.conf b/letsencrypt/ctrlshift.gov.sg.conf index fb094a4..671e66e 100644 --- a/letsencrypt/ctrlshift.gov.sg.conf +++ b/letsencrypt/ctrlshift.gov.sg.conf @@ -1,7 +1,7 @@ server { listen 443 ssl http2; listen [::]:443 ssl http2; - server_name ctrlshift.gov.sg stewhatsnext.gov.sg www.stewhatsnext.gov.sg; + server_name ctrlshift.gov.sg; ssl_certificate /etc/letsencrypt/live/ctrlshift.gov.sg/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/ctrlshift.gov.sg/privkey.pem; return 301 https://www.ctrlshift.gov.sg$request_uri; diff --git a/letsencrypt/healthinfo.gov.sg.conf b/letsencrypt/healthinfo.gov.sg.conf new file mode 100644 index 0000000..1f1ce9d --- /dev/null +++ b/letsencrypt/healthinfo.gov.sg.conf @@ -0,0 +1,8 @@ +server { + listen 443 ssl http2; + listen [::]:443 ssl http2; + server_name healthinfo.gov.sg; + ssl_certificate /etc/letsencrypt/live/healthinfo.gov.sg/fullchain.pem; + ssl_certificate_key /etc/letsencrypt/live/healthinfo.gov.sg/privkey.pem; + return 301 https://www.healthinfo.gov.sg$request_uri; + } \ No newline at end of file diff --git a/letsencrypt/supplyally.gov.sg.conf b/letsencrypt/supplyally.gov.sg.conf deleted file mode 100644 index 4f82154..0000000 --- a/letsencrypt/supplyally.gov.sg.conf +++ /dev/null @@ -1,8 +0,0 @@ -server { - listen 443 ssl http2; - listen [::]:443 ssl http2; - server_name supplyally.gov.sg sally.gov.sg www.sally.gov.sg; - ssl_certificate /etc/letsencrypt/live/supplyally.gov.sg/fullchain.pem; - ssl_certificate_key /etc/letsencrypt/live/supplyally.gov.sg/privkey.pem; - return 301 https://www.supplyally.gov.sg$request_uri; -}