Skip to content

Commit

Permalink
fix: lock nginx version and fix ssl syntax in config
Browse files Browse the repository at this point in the history
  • Loading branch information
tympanix committed Nov 7, 2023
1 parent 9aa66dd commit 1d1d4cc
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/electorrent-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ jobs:
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
- uses: actions/setup-python@v4
- name: Cache npm modules
uses: actions/cache@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion test/shared/nginx/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM nginx:alpine
FROM nginx:1.25-alpine

# Install openssl to generate x509 certs on startup
RUN apk add openssl
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ server {

## See the keepalive_timeout directive in nginx.conf.
## Server certificate and key.
ssl on;
ssl_certificate /etc/ssl/certs/dummy.crt;
ssl_certificate_key /etc/ssl/private/dummy.key;
ssl_session_timeout 5m;
Expand Down

0 comments on commit 1d1d4cc

Please sign in to comment.