summaryrefslogtreecommitdiff
path: root/www-servers/nginx/files/nginx.conf-r3
diff options
context:
space:
mode:
authorMarcin Deranek <marcin.deranek@slonko.net>2023-07-05 00:08:34 +0200
committerMarcin Deranek <marcin.deranek@slonko.net>2023-07-05 00:08:34 +0200
commit69b8a7a72af666dacd90cf627d225a64e6580763 (patch)
treed9aa8fe58fef6f074bd0b1f83d095d4703a5a433 /www-servers/nginx/files/nginx.conf-r3
parentd272278e8d6d533d8a832526a955759678f03a61 (diff)
downloadportage-69b8a7a72af666dacd90cf627d225a64e6580763.tar.gz
portage-69b8a7a72af666dacd90cf627d225a64e6580763.tar.bz2
portage-69b8a7a72af666dacd90cf627d225a64e6580763.zip
Dropping www-servers/nginx as already upstream
Diffstat (limited to 'www-servers/nginx/files/nginx.conf-r3')
-rw-r--r--www-servers/nginx/files/nginx.conf-r370
1 files changed, 0 insertions, 70 deletions
diff --git a/www-servers/nginx/files/nginx.conf-r3 b/www-servers/nginx/files/nginx.conf-r3
deleted file mode 100644
index aedaad4..0000000
--- a/www-servers/nginx/files/nginx.conf-r3
+++ /dev/null
@@ -1,70 +0,0 @@
-user nginx nginx;
-worker_processes 1;
-
-error_log /var/log/nginx/error_log info;
-
-events {
- worker_connections 1024;
- use epoll;
-}
-
-http {
- include /etc/nginx/mime.types.nginx;
- types_hash_max_size 4096;
- default_type application/octet-stream;
-
- log_format main
- '$remote_addr - $remote_user [$time_local] '
- '"$request" $status $bytes_sent '
- '"$http_referer" "$http_user_agent" '
- '"$gzip_ratio"';
-
- client_header_timeout 10m;
- client_body_timeout 10m;
- send_timeout 10m;
-
- connection_pool_size 256;
- client_header_buffer_size 1k;
- large_client_header_buffers 4 2k;
- request_pool_size 4k;
-
- gzip off;
-
- output_buffers 1 32k;
- postpone_output 1460;
-
- sendfile on;
- tcp_nopush on;
- tcp_nodelay on;
-
- keepalive_timeout 75 20;
-
- ignore_invalid_headers on;
-
- index index.html;
-
- server {
- listen 127.0.0.1;
- server_name localhost;
-
- access_log /var/log/nginx/localhost.access_log main;
- error_log /var/log/nginx/localhost.error_log info;
-
- root /var/www/localhost/htdocs;
- }
-
- # SSL example
- #server {
- # listen 127.0.0.1:443;
- # server_name localhost;
-
- # ssl on;
- # ssl_certificate /etc/ssl/nginx/nginx.pem;
- # ssl_certificate_key /etc/ssl/nginx/nginx.key;
-
- # access_log /var/log/nginx/localhost.ssl_access_log main;
- # error_log /var/log/nginx/localhost.ssl_error_log info;
-
- # root /var/www/localhost/htdocs;
- #}
-}