Files
.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
nginx-proxy-manager/backend/templates/letsencrypt-request.conf
chaptergy 56c317d223 All logs in single folder
nginx cannot create the folder structure for logs
2021-06-29 23:07:54 +02:00

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;
}
}