diff options
author | Elizabeth Hunt <me@liz.coffee> | 2025-04-27 21:15:30 -0700 |
---|---|---|
committer | Elizabeth Hunt <me@liz.coffee> | 2025-04-27 21:25:52 -0700 |
commit | daef0cf448af17357b552245f39067a9d340ce3d (patch) | |
tree | f65a660f7232f057b0c14e477c166006bfb83f87 /playbooks/roles/outbound/templates/proxy/nginx/conf.d/default.conf | |
parent | 1dcdfe34a74708f88aad68af965f4bb5c79adff1 (diff) | |
download | infra-daef0cf448af17357b552245f39067a9d340ce3d.tar.gz infra-daef0cf448af17357b552245f39067a9d340ce3d.zip |
Waow
Diffstat (limited to 'playbooks/roles/outbound/templates/proxy/nginx/conf.d/default.conf')
-rw-r--r-- | playbooks/roles/outbound/templates/proxy/nginx/conf.d/default.conf | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/playbooks/roles/outbound/templates/proxy/nginx/conf.d/default.conf b/playbooks/roles/outbound/templates/proxy/nginx/conf.d/default.conf new file mode 100644 index 0000000..f4a8007 --- /dev/null +++ b/playbooks/roles/outbound/templates/proxy/nginx/conf.d/default.conf @@ -0,0 +1,11 @@ +server { + listen 80 default_server; + + location / { + return 404; + } + + location /health { + return 200; + } +} |