@reldens/server-utils 0.38.0 → 0.39.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -135,6 +135,7 @@ class AppServerFactory
135
135
  if(appServerConfig){
136
136
  Object.assign(this, appServerConfig);
137
137
  }
138
+ this.setupReverseProxy();
138
139
  this.addHttpDomainsAsDevelopment();
139
140
  this.detectDevelopmentMode();
140
141
  this.setupDevelopmentConfiguration();
@@ -145,7 +146,6 @@ class AppServerFactory
145
146
  this.setupCors();
146
147
  this.setupRateLimiting();
147
148
  this.setupRequestParsing();
148
- this.setupReverseProxy();
149
149
  this.setupTrustedProxy();
150
150
  try {
151
151
  this.appServer = this.createServer();
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@reldens/server-utils",
3
3
  "scope": "@reldens",
4
- "version": "0.38.0",
4
+ "version": "0.39.0",
5
5
  "description": "Reldens - Server Utils",
6
6
  "author": "Damian A. Pastorini",
7
7
  "license": "MIT",
@@ -43,7 +43,7 @@
43
43
  "express-rate-limit": "8.1.0",
44
44
  "express-session": "1.18.2",
45
45
  "helmet": "8.1.0",
46
- "http-proxy-middleware": "^3.0.5",
46
+ "http-proxy-middleware": "3.0.5",
47
47
  "multer": "2.0.2",
48
48
  "sanitize-html": "2.17.0"
49
49
  }