feat: apps for apoc
This commit is contained in:
parent
41a9a425b7
commit
26590a38a7
8 changed files with 63 additions and 4 deletions
13
servers/apoc/docker-compose.d/custom/keycloak/Dockerfile
Normal file
13
servers/apoc/docker-compose.d/custom/keycloak/Dockerfile
Normal file
|
@ -0,0 +1,13 @@
|
|||
FROM quay.io/keycloak/keycloak:latest as builder
|
||||
|
||||
ENV KC_DB=postgres
|
||||
|
||||
WORKDIR /opt/keycloak
|
||||
RUN /opt/keycloak/bin/kc.sh build
|
||||
|
||||
FROM quay.io/keycloak/keycloak:latest
|
||||
COPY --from=builder /opt/keycloak/ /opt/keycloak/
|
||||
|
||||
ENV KC_DB=postgres
|
||||
|
||||
ENTRYPOINT ["/opt/keycloak/bin/kc.sh"]
|
|
@ -7,7 +7,7 @@ server {
|
|||
real_ip_recursive on;
|
||||
|
||||
location / {
|
||||
proxy_pass http://keycloak;
|
||||
proxy_pass http://keycloak$request_uri;
|
||||
|
||||
proxy_redirect off;
|
||||
proxy_set_header Host $host;
|
||||
|
@ -17,4 +17,4 @@ server {
|
|||
proxy_set_header X-Forwarded-Port 443;
|
||||
}
|
||||
|
||||
};
|
||||
}
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
server {
|
||||
listen 80;
|
||||
server_name ci.ixvd.net;
|
||||
|
||||
location / {
|
||||
proxy_pass http://woodpecker:8000$request_uri;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue