diff options
| author | Gregor Kleen <gkleen@yggdrasil.li> | 2015-11-07 21:30:46 +0100 | 
|---|---|---|
| committer | Gregor Kleen <gkleen@yggdrasil.li> | 2015-11-07 21:30:46 +0100 | 
| commit | e5899248bf45759565eb0bc2888dcedb3a6a63e8 (patch) | |
| tree | f4c324e4f75c3c0710cb104a62090b3e04155cbe /custom | |
| parent | 8ac4624d37b736913ff8368aadbc61cc362cb2a1 (diff) | |
| download | nixos-e5899248bf45759565eb0bc2888dcedb3a6a63e8.tar nixos-e5899248bf45759565eb0bc2888dcedb3a6a63e8.tar.gz nixos-e5899248bf45759565eb0bc2888dcedb3a6a63e8.tar.bz2 nixos-e5899248bf45759565eb0bc2888dcedb3a6a63e8.tar.xz nixos-e5899248bf45759565eb0bc2888dcedb3a6a63e8.zip  | |
moved nginx config
Diffstat (limited to 'custom')
| -rw-r--r-- | custom/ymir.nginx | 62 | 
1 files changed, 62 insertions, 0 deletions
diff --git a/custom/ymir.nginx b/custom/ymir.nginx new file mode 100644 index 00000000..1fb0afcb --- /dev/null +++ b/custom/ymir.nginx  | |||
| @@ -0,0 +1,62 @@ | |||
| 1 | default_type application/octet-stream; | ||
| 2 | |||
| 3 | log_format main | ||
| 4 | '$remote_addr - $remote_user [$time_local] ' | ||
| 5 | '"$request" $status $bytes_sent ' | ||
| 6 | '"$http_referer" "$http_user_agent" ' | ||
| 7 | '"$gzip_ratio"'; | ||
| 8 | |||
| 9 | client_header_timeout 10m; | ||
| 10 | client_body_timeout 10m; | ||
| 11 | send_timeout 10m; | ||
| 12 | |||
| 13 | connection_pool_size 256; | ||
| 14 | client_header_buffer_size 1k; | ||
| 15 | large_client_header_buffers 4 2k; | ||
| 16 | request_pool_size 4k; | ||
| 17 | |||
| 18 | gzip on; | ||
| 19 | gzip_min_length 1100; | ||
| 20 | gzip_buffers 4 8k; | ||
| 21 | gzip_types text/plain; | ||
| 22 | |||
| 23 | output_buffers 1 32k; | ||
| 24 | postpone_output 1460; | ||
| 25 | |||
| 26 | sendfile on; | ||
| 27 | tcp_nopush on; | ||
| 28 | tcp_nodelay on; | ||
| 29 | |||
| 30 | keepalive_timeout 75 20; | ||
| 31 | |||
| 32 | ignore_invalid_headers on; | ||
| 33 | |||
| 34 | server { | ||
| 35 | listen *:80; | ||
| 36 | listen [::]:80; | ||
| 37 | server_name dirty-haskell.org www.dirty-haskell.org; | ||
| 38 | |||
| 39 | root /srv/www/dirty-haskell.org; | ||
| 40 | } | ||
| 41 | |||
| 42 | server { | ||
| 43 | listen *:443 ssl; | ||
| 44 | listen [::]:443 ssl; | ||
| 45 | server_name dirty-haskell.org; | ||
| 46 | |||
| 47 | ssl_certificate /etc/nginx/ssl/dirty-haskell.org/fullchain.pem; | ||
| 48 | ssl_certificate_key /etc/nginx/ssl/dirty-haskell.org/privkey.pem; | ||
| 49 | |||
| 50 | root /srv/www/dirty-haskell.org; | ||
| 51 | } | ||
| 52 | |||
| 53 | server { | ||
| 54 | listen *:443 ssl; | ||
| 55 | listen [::]:443 ssl; | ||
| 56 | server_name www.dirty-haskell.org; | ||
| 57 | |||
| 58 | ssl_certificate /etc/nginx/ssl/www.dirty-haskell.org/fullchain.pem; | ||
| 59 | ssl_certificate_key /etc/nginx/ssl/www.dirty-haskell.org/privkey.pem; | ||
| 60 | |||
| 61 | root /srv/www/dirty-haskell.org; | ||
| 62 | } | ||
