docker compose stuff.

This commit is contained in:
2025-07-29 19:37:24 +02:00
parent f6536761bc
commit 0acb8470c5
5 changed files with 213 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name its.pkhamre.com;
server_tokens off;
location /.well-known/acme-challenge/ {
root /usr/share/nginx/certbot;
}
location / {
return 301 https://its.pkhamre.com$request_uri;
}
}