Skip to content

Instantly share code, notes, and snippets.

@bluebycode
Created May 25, 2016 12:35
Show Gist options
  • Save bluebycode/99d38b3d1950c904038996842744e9e4 to your computer and use it in GitHub Desktop.
Save bluebycode/99d38b3d1950c904038996842744e9e4 to your computer and use it in GitHub Desktop.
Nginx basic configuration. Basic authentication layout #nginx #htpasswd
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
include /etc/nginx/mime.types;
default_type application/octet-stream;
server {
listen 443 default_server;
server_name localhost;
location / {
auth_basic "Restricted";
auth_basic_user_file /etc/nginx/.htpasswd;
proxy_pass http://127.0.0.1:3000$uri;
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment