aboutsummaryrefslogtreecommitdiff
path: root/files/usr/local/etc/nginx/nginx.conf-acme
diff options
context:
space:
mode:
Diffstat (limited to 'files/usr/local/etc/nginx/nginx.conf-acme')
-rw-r--r--files/usr/local/etc/nginx/nginx.conf-acme55
1 files changed, 0 insertions, 55 deletions
diff --git a/files/usr/local/etc/nginx/nginx.conf-acme b/files/usr/local/etc/nginx/nginx.conf-acme
deleted file mode 100644
index d77c0de..0000000
--- a/files/usr/local/etc/nginx/nginx.conf-acme
+++ /dev/null
@@ -1,55 +0,0 @@
-worker_processes ${nginx_worker_processes};
-worker_rlimit_nofile ${nginx_nofile};
-
-events {
- worker_connections ${nginx_worker_connections};
-}
-
-http {
- include mime.types;
- default_type application/octet-stream;
- index index.html;
-
- aio threads;
- aio_write on;
- sendfile on;
- directio 4m;
- tcp_nopush on;
- tcp_nodelay on;
- keepalive_timeout 65;
- types_hash_max_size 2048;
- server_tokens off;
- client_max_body_size 5m;
- charset utf-8;
- gzip on;
- gzip_http_version 1.0;
- gzip_types text/plain text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript application/json image/svg+xml;
-
- proxy_buffers 64 32k;
- proxy_busy_buffers_size 64k;
- fastcgi_buffers 64 32k;
-
- ssl_session_timeout 1d;
- ssl_session_cache shared:SSL:10m;
- ssl_session_tickets off;
- ssl_protocols TLSv1.3;
- ssl_prefer_server_ciphers off;
-
- map \$http_upgrade \$connection_upgrade {
- default upgrade;
- '' keep-alive;
- }
-
- server {
- listen 0.0.0.0:80 default_server;
- listen [::]:80 default_server;
-
- include acme.conf;
-
- location / {
- return 301 https://\$host\$request_uri;
- }
- }
-
- include vhost*.conf;
-}