some deployments worked out

This commit is contained in:
2025-10-03 18:02:40 -04:00
parent 0acfd16d96
commit fdc2349de1
26 changed files with 286 additions and 141 deletions

View File

@@ -0,0 +1,16 @@
server {
listen 443 ssl default_server;
server_name _;
ssl_certificate /certs/nginx.crt;
ssl_certificate_key /certs/nginx.key;
location / {
proxy_pass http://tam3-api/;
proxy_set_header Host $host;
proxy_ssl_name $host;
proxy_ssl_server_name on;
proxy_ssl_session_reuse off;
}
}