Compare commits
3 commits
891d8d30e3
...
0fd7a066b8
| Author | SHA1 | Date | |
|---|---|---|---|
| 0fd7a066b8 | |||
|
51bbdd42a2 |
|||
|
428b5c70bc |
4 changed files with 17 additions and 3 deletions
|
|
@ -10,7 +10,7 @@ jobs:
|
|||
name: Ansible Lint
|
||||
runs-on: docker
|
||||
steps:
|
||||
- uses: actions/checkout@v5
|
||||
- uses: actions/checkout@v6
|
||||
- name: Install pip
|
||||
run: |
|
||||
apt update
|
||||
|
|
|
|||
|
|
@ -7,9 +7,11 @@ certbot__certificate_domains:
|
|||
- "dooris.ccchh.net"
|
||||
certbot__new_cert_commands:
|
||||
- "systemctl reload nginx.service"
|
||||
certbot__http_01_port: 80
|
||||
|
||||
nginx__version_spec: ""
|
||||
nginx__deploy_redirect_conf: false
|
||||
nginx__configurations:
|
||||
- name: dooris.ccchh.net
|
||||
content: "{{ lookup('ansible.builtin.file', 'resources/z9/dooris/nginx/dooris.ccchh.net.conf') }}"
|
||||
- name: http_handler
|
||||
content: "{{ lookup('ansible.builtin.file', 'resources/z9/dooris/nginx/http_handler.conf') }}"
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@ services:
|
|||
- pretalx_net
|
||||
|
||||
celery:
|
||||
image: docker.io/pretalx/standalone:v2025.2.2
|
||||
image: docker.io/pretalx/standalone:v2025.1.0
|
||||
command:
|
||||
- taskworker
|
||||
restart: unless-stopped
|
||||
|
|
|
|||
12
resources/z9/dooris/nginx/http_handler.conf
Normal file
12
resources/z9/dooris/nginx/http_handler.conf
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
server {
|
||||
listen 80 default_server;
|
||||
listen [::]:80 default_server;
|
||||
|
||||
location / {
|
||||
return 301 https://$host$request_uri;
|
||||
}
|
||||
|
||||
location /.well-known/acme-challenge/ {
|
||||
proxy_pass http://127.0.0.1:31820/.well-known/acme-challenge/;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue