We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 426c439 + 62c98c6 commit 29abca7Copy full SHA for 29abca7
nginx.conf
@@ -512,6 +512,14 @@ http {
512
# Add HTTP Strict Transport Security for good measure.
513
add_header Strict-Transport-Security "max-age=31536000; includeSubDomains;";
514
515
+ # This is used by the certificate authority to validate we own the domain
516
+ location = /.well-known/pki-validation/fileauth.txt {
517
+ proxy_pass https://dnsvalidationstorage.blob.core.windows.net/dnsfiles/fileauth.txt;
518
+ proxy_redirect off;
519
+ proxy_set_header X-Real-IP $remote_addr;
520
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
521
+ }
522
+
523
location / {
524
proxy_pass http://digitransit-site:8080;
525
include basicsettings.conf;
0 commit comments