From 26a1edb019c2bf1d76f7620c4e05d2424100bd60 Mon Sep 17 00:00:00 2001 From: Sheogorath <sheogorath@shivering-isles.com> Date: Thu, 19 Aug 2021 03:15:17 +0200 Subject: [PATCH] Fix wrong ports --- nginx.d/default.conf | 2 +- nginx.d/demo.conf | 2 +- nginx.d/docs.conf | 2 +- nginx.d/git.conf | 2 +- nginx.d/social.conf | 2 +- nginx.d/translate.conf | 2 +- nginx.d/zz_chat.conf | 2 +- nginx.d/zz_community.conf | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/nginx.d/default.conf b/nginx.d/default.conf index 167b0b6..50734dd 100644 --- a/nginx.d/default.conf +++ b/nginx.d/default.conf @@ -1,4 +1,4 @@ server { - listen *:80; + listen *:8080; return 302 https://hedgedoc.org$request_uri; } diff --git a/nginx.d/demo.conf b/nginx.d/demo.conf index 3ab598b..9d323d2 100644 --- a/nginx.d/demo.conf +++ b/nginx.d/demo.conf @@ -1,5 +1,5 @@ server { - listen *:80; + listen *:8080; server_name demo.codimd.org demo.hedgedoc.org; return 301 https://demo.hedgedoc.org$request_uri; } diff --git a/nginx.d/docs.conf b/nginx.d/docs.conf index d37ef6f..e831445 100644 --- a/nginx.d/docs.conf +++ b/nginx.d/docs.conf @@ -1,5 +1,5 @@ server { - listen *:80; + listen *:8080; server_name docs.codimd.org docs.hedgedoc.org; return 302 https://github.com/hedgedoc/hedgedoc/tree/HEAD/docs; } diff --git a/nginx.d/git.conf b/nginx.d/git.conf index eb24ef6..7065dd5 100644 --- a/nginx.d/git.conf +++ b/nginx.d/git.conf @@ -1,5 +1,5 @@ server { - listen *:80; + listen *:8080; server_name git.codimd.org git.hedgedoc.org; return 302 https://github.com/hedgedoc/hedgedoc; } diff --git a/nginx.d/social.conf b/nginx.d/social.conf index fb18527..223040c 100644 --- a/nginx.d/social.conf +++ b/nginx.d/social.conf @@ -1,5 +1,5 @@ server { - listen *:80; + listen *:8080; server_name social.codimd.org social.hedgedoc.org; location /mastodon { diff --git a/nginx.d/translate.conf b/nginx.d/translate.conf index 6991ae4..48f22b4 100644 --- a/nginx.d/translate.conf +++ b/nginx.d/translate.conf @@ -1,5 +1,5 @@ server { - listen *:80; + listen *:8080; server_name translate.codimd.org translate.hedgedoc.org; return 302 https://poeditor.com/join/project/1OpGjF2Jir; } diff --git a/nginx.d/zz_chat.conf b/nginx.d/zz_chat.conf index 6cb1b6c..50ebd16 100644 --- a/nginx.d/zz_chat.conf +++ b/nginx.d/zz_chat.conf @@ -1,5 +1,5 @@ server { - listen *:80; + listen *:8080; server_name chat.codimd.org chat.hedgedoc.org; location = /development { diff --git a/nginx.d/zz_community.conf b/nginx.d/zz_community.conf index 322801e..f7833e1 100644 --- a/nginx.d/zz_community.conf +++ b/nginx.d/zz_community.conf @@ -1,5 +1,5 @@ server { - listen *:80; + listen *:8080; server_name community.codimd.org community.hedgedoc.org; return 302 https://community.hedgedoc.org$request_uri; } -- GitLab