Compare commits
12 Commits
db9addaf9a
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| f13e942078 | |||
| 6b6cf8daba | |||
| c8db2f43a9 | |||
| 4ccbd0e77b | |||
| bf66bbc044 | |||
| 741472f73c | |||
| 496d7200b0 | |||
| ee4157df37 | |||
| c33f5d9a41 | |||
| e66bc551d5 | |||
| a2516ef5fa | |||
| adee831a7b |
@@ -47,7 +47,7 @@ jobs:
|
||||
needs: [prepare_context]
|
||||
if: github.event_name == 'pull_request' && github.event.action != 'closed'
|
||||
steps:
|
||||
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
||||
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
|
||||
|
||||
- name: Deploy via Rsync & Docker
|
||||
uses: easingthemes/ssh-deploy@2cc5b27bf3029d0455dd5e09fe02633904031447 # v6.0.3
|
||||
@@ -76,7 +76,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
if: github.ref == 'refs/heads/main'
|
||||
steps:
|
||||
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
||||
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
|
||||
|
||||
- name: Deploy via Rsync & Docker
|
||||
uses: easingthemes/ssh-deploy@2cc5b27bf3029d0455dd5e09fe02633904031447 # v6.0.3
|
||||
@@ -103,7 +103,7 @@ jobs:
|
||||
needs: [deploy_staging]
|
||||
if: github.ref == 'refs/heads/main'
|
||||
steps:
|
||||
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
||||
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
|
||||
|
||||
- name: Deploy via Rsync & Docker
|
||||
uses: easingthemes/ssh-deploy@2cc5b27bf3029d0455dd5e09fe02633904031447 # v6.0.3
|
||||
@@ -165,7 +165,7 @@ jobs:
|
||||
needs: [deploy_preprod]
|
||||
if: github.ref == 'refs/heads/main'
|
||||
steps:
|
||||
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
||||
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
|
||||
|
||||
- name: Deploy via Rsync & Docker
|
||||
uses: easingthemes/ssh-deploy@2cc5b27bf3029d0455dd5e09fe02633904031447 # v6.0.3
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
services:
|
||||
traefik:
|
||||
image: "traefik:v3.7@sha256:6b9cbca6fac42ab0075f5437d8dc1685cfd188626d8d515839ea94f8b6271c42"
|
||||
image: "traefik:v3.7@sha256:d6858791f9e74df44ca4014166647c41cdc2abd3bf2a71b832ca4e1c6a91b257"
|
||||
restart: unless-stopped
|
||||
security_opt:
|
||||
- no-new-privileges:true
|
||||
|
||||
29
prod/route-to-kovagoadigepe.yaml
Normal file
29
prod/route-to-kovagoadigepe.yaml
Normal file
@@ -0,0 +1,29 @@
|
||||
http:
|
||||
routers:
|
||||
kovagoadi-gepe-http-router:
|
||||
rule: "HostRegexp(`^.+\\.kovagoadi-gepe\\.kovagoadi\\.hu$`)"
|
||||
entryPoints:
|
||||
- "web"
|
||||
service: "kovagoadi-gepe-http"
|
||||
priority: 100
|
||||
services:
|
||||
kovagoadi-gepe-http:
|
||||
loadBalancer:
|
||||
servers:
|
||||
- url: "http://192.168.1.81:80"
|
||||
|
||||
tcp:
|
||||
routers:
|
||||
kovagoadi-gepe-secure-router:
|
||||
rule: "HostSNI(`*.kovagoadi-gepe.kovagoadi.hu`)"
|
||||
service: "kovagoadi-gepe-secure"
|
||||
tls:
|
||||
passthrough: true
|
||||
priority: 100
|
||||
entryPoints:
|
||||
- "https"
|
||||
services:
|
||||
kovagoadi-gepe-secure:
|
||||
loadBalancer:
|
||||
servers:
|
||||
- address: "192.168.1.81:443"
|
||||
Reference in New Issue
Block a user