.github
backend
.vscode
config
doc
internal
lib
migrations
models
routes
schema
templates
_assets.conf
_certificates.conf
_exploits.conf
_forced_ssl.conf
_header_comment.conf
_hsts.conf
_listen.conf
_location.conf
dead_host.conf
default.conf
ip_ranges.conf
letsencrypt-request.conf
proxy_host.conf
redirection_host.conf
ssl_passthrough_host.conf
stream.conf
.eslintrc.json
.gitignore
.prettierrc
app.js
db.js
index.js
knexfile.js
logger.js
migrate.js
nodemon.json
package.json
setup.js
yarn.lock
docker
docs
frontend
global
scripts
test
.gitignore
.version
Jenkinsfile
LICENSE
README.md
20 lines
376 B
Plaintext
20 lines
376 B
Plaintext
{% include "_header_comment.conf" %}
|
|
|
|
server {
|
|
listen 80;
|
|
{% if ipv6 -%}
|
|
listen [::]:80;
|
|
{% endif %}
|
|
|
|
server_name {{ domain_names | join: " " }};
|
|
|
|
access_log /data/logs/letsencrypt-requests_access.log standard;
|
|
error_log /data/logs/letsencrypt-requests_error.log warn;
|
|
|
|
include conf.d/include/letsencrypt-acme-challenge.conf;
|
|
|
|
location / {
|
|
return 404;
|
|
}
|
|
}
|