Created
April 1, 2014 04:24
-
-
Save nviennot/9907683 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | |
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 4k; | |
large_client_header_buffers 4 8k; | |
request_pool_size 16k; | |
gzip on; | |
gzip_min_length 1100; | |
gzip_buffers 4 8k; | |
gzip_types text/plain; | |
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 0.0.0.0:80; | |
server_name tunnel.android.clients.google.com; | |
location / { | |
proxy_set_header Host android.clients.google.com; | |
proxy_pass https://android.clients.google.com:443; | |
} | |
} | |
server { | |
listen *:8000 default_server; | |
location / { | |
proxy_pass http://192.168.11.129:9200; | |
proxy_redirect off; | |
proxy_set_header X-Real-IP $remote_addr; | |
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
proxy_set_header Host $http_host; | |
auth_basic "ElasticSearch"; | |
auth_basic_user_file /etc/nginx/es-password; | |
} | |
} | |
server { | |
listen *:80 default_server; | |
listen 127.0.0.1:80 default_server; | |
server_name _; | |
access_log /var/log/nginx/localhost.access_log main; | |
error_log /var/log/nginx/localhost.error_log info; | |
root /home/pafy/www; | |
location / { | |
autoindex on; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment