7484a0e034
- Dual-mode operation: standalone + c2itall integrated (env var detection)
- SSH keys moved to ~/.ssh/c2deploy_ph-{id} with per-deployment known_hosts
- Ansible output streaming with filtered console + full log capture
- Deployment management menu: discover, SSH, teardown existing deployments
- Cert setup script (setup-cert.sh) deployed to servers for post-DNS LE certs
- Matrix hardening: unique secrets, SSRF protection, rate limits, nginx security headers
- Base hardening: fail2ban systemd backend (Debian 12), SSH limits, nginx jails
- Add-matrix-user helper script deployed to all Matrix servers
- .env support for standalone credential storage
- Config key rename: deploy_id → deployment_id (with backward compat)
- Provider cleanup playbooks for teardown
- Test suite with 50 tests
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
97 lines
3.0 KiB
YAML
97 lines
3.0 KiB
YAML
---
|
|
# Nginx reverse proxy for Vaultwarden
|
|
|
|
- name: Create certbot webroot
|
|
file:
|
|
path: /var/www/certbot
|
|
state: directory
|
|
owner: www-data
|
|
group: www-data
|
|
mode: "0755"
|
|
|
|
- name: Deploy HTTP-only nginx config (for certbot)
|
|
copy:
|
|
dest: /etc/nginx/sites-available/vaultwarden
|
|
content: |
|
|
server {
|
|
listen 80;
|
|
server_name {{ vaultwarden_domain }};
|
|
location /.well-known/acme-challenge/ { root /var/www/certbot; }
|
|
location / { return 200 'phantom setup in progress'; add_header Content-Type text/plain; }
|
|
}
|
|
mode: "0644"
|
|
notify: reload nginx
|
|
|
|
- name: Enable Vaultwarden nginx site
|
|
file:
|
|
src: /etc/nginx/sites-available/vaultwarden
|
|
dest: /etc/nginx/sites-enabled/vaultwarden
|
|
state: link
|
|
notify: reload nginx
|
|
|
|
- name: Flush handlers to apply HTTP config
|
|
meta: flush_handlers
|
|
|
|
- name: Setup TLS (certbot with self-signed fallback)
|
|
include_tasks: ../../common/tls_setup.yml
|
|
vars:
|
|
_tls_domain: "{{ vaultwarden_domain }}"
|
|
|
|
- name: Deploy SSL nginx config
|
|
copy:
|
|
dest: /etc/nginx/sites-available/vaultwarden
|
|
content: |
|
|
server {
|
|
listen 80;
|
|
server_name {{ vaultwarden_domain }};
|
|
location /.well-known/acme-challenge/ { root /var/www/certbot; }
|
|
location / { return 301 https://$host$request_uri; }
|
|
}
|
|
|
|
server {
|
|
listen 443 ssl http2;
|
|
server_name {{ vaultwarden_domain }};
|
|
|
|
ssl_certificate {{ _ssl_cert }};
|
|
ssl_certificate_key {{ _ssl_key }};
|
|
ssl_protocols TLSv1.2 TLSv1.3;
|
|
ssl_ciphers HIGH:!aNULL:!MD5;
|
|
ssl_prefer_server_ciphers on;
|
|
|
|
server_tokens off;
|
|
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains" always;
|
|
add_header X-Content-Type-Options nosniff always;
|
|
add_header X-Frame-Options DENY always;
|
|
|
|
client_max_body_size 525m;
|
|
|
|
location / {
|
|
proxy_pass http://127.0.0.1:8081;
|
|
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 $scheme;
|
|
}
|
|
|
|
location /notifications/hub {
|
|
proxy_pass http://127.0.0.1:3012;
|
|
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 $scheme;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "upgrade";
|
|
}
|
|
|
|
location /notifications/hub/negotiate {
|
|
proxy_pass http://127.0.0.1:8081;
|
|
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 $scheme;
|
|
}
|
|
}
|
|
mode: "0644"
|
|
notify: reload nginx
|