Compare commits

...

4 Commits

Author SHA1 Message Date
Rainer Killinger
dcb56f7721 1.1.0 2022-03-10 16:55:18 +01:00
Rainer Killinger
20f281a544 refactor: adjust nginx config file location 2022-03-10 16:54:32 +01:00
Rainer Killinger
712f204ade ci: rename CI jobs 2022-03-10 16:20:10 +01:00
Rainer Killinger
86535bb1bb docs: update changelog 2022-03-10 16:16:44 +01:00
6 changed files with 15 additions and 6 deletions

View File

@@ -37,7 +37,7 @@ scheduled-audit:
- npm audit --audit-level=high
stage: audit
image-test:
docker image build:
before_script: []
image: registry.gitlab.com/openstapps/projectmanagement/builder
stage: test
@@ -55,7 +55,7 @@ image-test:
tags:
- docker
image-build:
docker image:
image: registry.gitlab.com/openstapps/projectmanagement/builder
stage: publish
dependencies:

View File

@@ -1,3 +1,12 @@
## [1.0.1](https://gitlab.com/openstapps/proxy/compare/v1.0.0...v1.0.1) (2022-03-10)
### Bug Fixes
* nginx deleting its own conifg ([edbd739](https://gitlab.com/openstapps/proxy/commit/edbd739db995b72fd3f5b5bec7558442a329f719))
# [1.0.0](https://gitlab.com/openstapps/proxy/compare/v0.4.0...v1.0.0) (2022-03-09)

View File

@@ -19,7 +19,7 @@ const config: ConfigFile = {
activeVersions: ['1\\.0\\.\\d+','2\\.0\\.\\d+'],
hiddenRoutes: ['/bulk'],
outdatedVersions: ['0\\.8\\.\\d+', '0\\.5\\.\\d+', '0\\.6\\.\\d+', '0\\.7\\.\\d+'],
output: '/etc/nginx/conf.d/default.conf',
output: '/etc/nginx/http.d/default.conf',
rateLimitAllowList: ['127.0.0.1/32'],
sslFilePaths: {
certificate: '/etc/nginx/certs/ssl.crt',

View File

@@ -22,5 +22,5 @@ http {
gzip on;
keepalive_timeout 65;
include /etc/nginx/conf.d/*;
include /etc/nginx/http.d/*;
}

2
package-lock.json generated
View File

@@ -1,6 +1,6 @@
{
"name": "@openstapps/proxy",
"version": "1.0.1",
"version": "1.1.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@@ -1,6 +1,6 @@
{
"name": "@openstapps/proxy",
"version": "1.0.1",
"version": "1.1.0",
"description": "NGINX proxy that is dynamically configured by a Node.js script",
"main": "./lib/cli.js",
"dependencies": {