Fix overlapping ports

This commit is contained in:
Christer Warén
2025-09-14 14:28:05 +03:00
parent 91bd77479b
commit 778f9017ca
3 changed files with 4 additions and 4 deletions

View File

@@ -1 +1 @@
Listen 8080
Listen 8090

View File

@@ -1,4 +1,4 @@
<VirtualHost *:8080>
<VirtualHost *:8090>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName

View File

@@ -72,7 +72,7 @@ server {
gunzip on;
location / {
proxy_pass http://127.0.0.1:3001;
proxy_pass http://127.0.0.1:8080;
proxy_set_header Host $http_host;
proxy_intercept_errors on;
proxy_http_version 1.1;
@@ -115,7 +115,7 @@ server {
gunzip on;
location / {
proxy_pass http://127.0.0.1:3001;
proxy_pass http://127.0.0.1:8090;
proxy_set_header Host $http_host;
proxy_intercept_errors on;
proxy_http_version 1.1;