Added reverse proxy Dockerfile
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Administrator 2023-03-16 08:22:36 +01:00
parent 43ee84912e
commit f8c551c50b
3 changed files with 63 additions and 1 deletions

View File

@ -4,7 +4,7 @@ pipeline:
commands:
- echo -n "${CI_COMMIT_BRANCH//\//-}-${CI_COMMIT_SHA:0:8}, latest" > .tags
when:
path: [ "frontend/**", "backend/**" ]
path: [ "frontend/**", "backend/**", "proxy/**" ]
event: push
@ -45,4 +45,22 @@ pipeline:
path: "frontend/**"
event: push
# -------------------------------------- Frontend --------------------------------------
build_proxy:
image: woodpeckerci/plugin-docker-buildx
settings:
repo:
from_secret: repository_proxy
username:
from_secret: registry_username
password:
from_secret: registry_password
registry:
from_secret: registry
dockerfile: Dockerfile.Proxy
platforms: linux/amd64
when:
path: "proxy/**"
event: push
branches: main

2
Dockerfile.Proxy Normal file
View File

@ -0,0 +1,2 @@
FROM jonasal/nginx-certbot:latest
COPY proxy/* /etc/nginx/conf.d/

42
proxy/nginx.conf Normal file
View File

@ -0,0 +1,42 @@
worker_processes 1;
events {
worker_connections 1024;
}
http {
# HTTPS server configuration
server {
listen 443 ssl;
server_name translator.dhbw.flokaiser.com;
ssl_certificate /etc/nginx/certs/cert.pem;
ssl_certificate_key /etc/nginx/certs/key.pem;
location / {
# Forward requests to port 80
proxy_pass http://frontend:80/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto https;
}
location /api {
# Forward requests to port 80
proxy_pass http://backend:80/api/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto https;
}
}
# HTTP server configuration
server {
listen 80;
server_name translator.dhbw.flokaiser.com;
return 301 https://$server_name$request_uri;
}
}