]> Untitled Git - proxy.git/blob - nginx.conf
Added public conf
[proxy.git] / nginx.conf
1 user  nginx;
2 worker_processes  1;
3
4 error_log  /var/log/nginx/error.log warn;
5 pid        /var/run/nginx.pid;
6
7
8 events {
9     worker_connections  1024;
10 }
11
12
13 http {
14     ssl_password_file /etc/ssl/certs/passphrase.txt;
15
16     include       /etc/nginx/mime.types;
17     default_type  application/octet-stream;
18
19     log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
20                       '$status $body_bytes_sent "$http_referer" '
21                       '"$http_user_agent" "$http_x_forwarded_for"';
22
23     access_log  /var/log/nginx/access.log  main;
24
25     sendfile        on;
26     #tcp_nopush     on;
27
28     keepalive_timeout  65;
29
30     #gzip  on;
31
32     include /etc/nginx/conf.d/*.conf;
33 }