Skip to content

Instantly share code, notes, and snippets.

@mccabe615
Created February 16, 2015 03:12
Show Gist options
  • Save mccabe615/36fd55cea910da078160 to your computer and use it in GitHub Desktop.
Save mccabe615/36fd55cea910da078160 to your computer and use it in GitHub Desktop.
worker_processes 1;
user nobody nogroup;
pid /tmp/nginx.pid;
error_log /var/log/nginx.error.log;
events {
worker_connections 1024;
accept_mutex off;
}
http {
default_type application/octet-stream;
access_log /tmp/nginx.access.log combined;
sendfile on;
tcp_nopush on;
tcp_nodelay off;
gzip on;
gzip_http_version 1.0;
gzip_proxied any;
gzip_min_length 500;
gzip_disable "MSIE [1-6]\.";
gzip_types text/plain text/html text/xml text/css
text/comma-separated-values
text/javascript application/x-javascript
application/atom+xml;
#include /etc/nginx/sites-enabled/*;
server {
listen 80;
return 301 https://$host$request_uri;
}
server {
listen 443;
server_name spring.dev;
ssl_certificate /etc/nginx/server.crt;
ssl_certificate_key /etc/nginx/server.key;
ssl on;
ssl_session_cache builtin:1000 shared:SSL:10m;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers HIGH:!aNULL:!eNULL:!EXPORT:!CAMELLIA:!DES:!MD5:!PSK:!RC4;
ssl_prefer_server_ciphers on;
access_log /tmp/access.log;
location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_pass http://localhost:8080;
proxy_read_timeout 90;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment