From 145d891572317f7423480809121bba95515052f8 Mon Sep 17 00:00:00 2001 From: TessavWalstijn Date: Mon, 19 Feb 2024 19:35:15 +0100 Subject: [PATCH] Fix a missing path for nginx --- CHANGELOG.md | 6 ++++++ nginx/dev.conf | 6 +++--- nginx/prd.conf | 6 +++--- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b2ec07a..650f6b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # SE Readme Changelog +## [[v2.1.3] - 2024/02/19](https://github.com/squeeble-ink/stackexchange.readme-stats/releases/tag/v2.1.2) + +### Fixed + +- nginx proxy_pass + ## [[v2.1.2] - 2024/02/19](https://github.com/squeeble-ink/stackexchange.readme-stats/releases/tag/v2.1.2) ### Fixed diff --git a/nginx/dev.conf b/nginx/dev.conf index bc4e3f2..9822940 100644 --- a/nginx/dev.conf +++ b/nginx/dev.conf @@ -16,7 +16,7 @@ server { proxy_cache_bypass $http_upgrade; add_header Strict-Transport-Security "max-age=31536000; includeSubDomains" always; - proxy_pass http://shackexchange_readme_stats_dev/; + proxy_pass http://shackexchange_readme_stats_dev/se; } } @@ -38,7 +38,7 @@ server { proxy_cache_bypass $http_upgrade; add_header Strict-Transport-Security "max-age=31536000; includeSubDomains" always; - proxy_pass http://shackexchange_readme_stats_dev/; + proxy_pass http://shackexchange_readme_stats_dev/se; } } @@ -60,6 +60,6 @@ server { proxy_cache_bypass $http_upgrade; add_header Strict-Transport-Security "max-age=31536000; includeSubDomains" always; - proxy_pass http://shackexchange_readme_stats_dev/; + proxy_pass http://shackexchange_readme_stats_dev/se; } } diff --git a/nginx/prd.conf b/nginx/prd.conf index 4f69c67..a99ddc2 100644 --- a/nginx/prd.conf +++ b/nginx/prd.conf @@ -16,7 +16,7 @@ server { proxy_cache_bypass $http_upgrade; add_header Strict-Transport-Security "max-age=31536000; includeSubDomains" always; - proxy_pass http://shackexchange_readme_stats/; + proxy_pass http://shackexchange_readme_stats/se; } } @@ -38,7 +38,7 @@ server { proxy_cache_bypass $http_upgrade; add_header Strict-Transport-Security "max-age=31536000; includeSubDomains" always; - proxy_pass http://shackexchange_readme_stats/; + proxy_pass http://shackexchange_readme_stats/se; } } @@ -60,6 +60,6 @@ server { proxy_cache_bypass $http_upgrade; add_header Strict-Transport-Security "max-age=31536000; includeSubDomains" always; - proxy_pass http://shackexchange_readme_stats/; + proxy_pass http://shackexchange_readme_stats/se; } }