-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
create an optional endpoint called engine-state (#48)
* create an optional endpoint called engine-state * update enabling template to use engine-state * update dockerfile * fix docker entrypoint
- Loading branch information
Kim Fehrs
authored
Apr 23, 2024
1 parent
d3de2b1
commit 29a27c7
Showing
5 changed files
with
20 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
FROM nginx:1.25-alpine | ||
LABEL maintainer="[email protected]" | ||
|
||
RUN apk add --no-cache --update libressl=3.7.3-r0 wget=1.21.4-r0 openssl=3.1.4-r5 && \ | ||
RUN apk add --no-cache --update libressl=3.8.2-r0 wget=1.21.4-r0 openssl=3.1.4-r6 && \ | ||
apk del curl libcurl | ||
|
||
# good idea to persist this | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
location /engine-state { | ||
auth_basic_user_file /etc/nginx/secrets/htpasswd.admin; | ||
auth_basic on; | ||
proxy_pass ${DOLLAR}engine_state; | ||
include conf.d/enable-websocket.conf; | ||
include conf.d/enable-cors.conf; | ||
include conf.d/enable-compression.conf; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters