Skip to content

Commit

Permalink
Fix a missing path for nginx
Browse files Browse the repository at this point in the history
  • Loading branch information
TessavWalstijn committed Feb 19, 2024
1 parent a0dbb77 commit 145d891
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions nginx/dev.conf
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}

Expand All @@ -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;
}
}

Expand All @@ -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;
}
}
6 changes: 3 additions & 3 deletions nginx/prd.conf
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}

Expand All @@ -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;
}
}

Expand All @@ -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;
}
}

0 comments on commit 145d891

Please sign in to comment.