mirror of
https://github.com/cwchristerw/tjas-infra
synced 2025-09-20 11:12:52 +00:00
Fix overlapping ports
This commit is contained in:
@@ -1 +1 @@
|
|||||||
Listen 8080
|
Listen 8090
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
<VirtualHost *:8080>
|
<VirtualHost *:8090>
|
||||||
# The ServerName directive sets the request scheme, hostname and port that
|
# The ServerName directive sets the request scheme, hostname and port that
|
||||||
# the server uses to identify itself. This is used when creating
|
# the server uses to identify itself. This is used when creating
|
||||||
# redirection URLs. In the context of virtual hosts, the ServerName
|
# redirection URLs. In the context of virtual hosts, the ServerName
|
||||||
|
@@ -72,7 +72,7 @@ server {
|
|||||||
gunzip on;
|
gunzip on;
|
||||||
|
|
||||||
location / {
|
location / {
|
||||||
proxy_pass http://127.0.0.1:3001;
|
proxy_pass http://127.0.0.1:8080;
|
||||||
proxy_set_header Host $http_host;
|
proxy_set_header Host $http_host;
|
||||||
proxy_intercept_errors on;
|
proxy_intercept_errors on;
|
||||||
proxy_http_version 1.1;
|
proxy_http_version 1.1;
|
||||||
@@ -115,7 +115,7 @@ server {
|
|||||||
gunzip on;
|
gunzip on;
|
||||||
|
|
||||||
location / {
|
location / {
|
||||||
proxy_pass http://127.0.0.1:3001;
|
proxy_pass http://127.0.0.1:8090;
|
||||||
proxy_set_header Host $http_host;
|
proxy_set_header Host $http_host;
|
||||||
proxy_intercept_errors on;
|
proxy_intercept_errors on;
|
||||||
proxy_http_version 1.1;
|
proxy_http_version 1.1;
|
||||||
|
Reference in New Issue
Block a user