summaryrefslogtreecommitdiff
path: root/roles/private/files/europa/http.drone.internal.simponic.xyz.conf
blob: db2ea0ecbc5303198772e04e30abb4f9fe23a90b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
server {
  listen 80;
  server_name drone.internal.simponic.xyz;

  location /.well-known/acme-challenge {
    root /var/www/letsencrypt;
    try_files $uri $uri/ =404;
  }

  location / {
    rewrite ^ https://drone.internal.simponic.xyz$request_uri? permanent;
  }
}