Created
June 1, 2018 22:15
-
-
Save wreulicke/a1ff1e1114821b03221419d181f55395 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; | |
| 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; | |
| auth_basic "Restricted"; | |
| auth_basic_user_file /etc/nginx/.htpasswd; | |
| include /etc/nginx/mime.types; | |
| default_type application/octet-stream; | |
| # Load modular configuration files from the /etc/nginx/conf.d directory. | |
| # See http://nginx.org/en/docs/ngx_core_module.html#include | |
| # for more information. | |
| include /etc/nginx/conf.d/*.conf; | |
| index index.html index.htm; | |
| server { | |
| listen 8080 default_server; | |
| listen [::]:8080 default_server; | |
| server_name localhost; | |
| root /usr/share/nginx/html; | |
| # Load configuration files for the default server block. | |
| include /etc/nginx/default.d/*.conf; | |
| location / { | |
| proxy_set_header Authorization ""; | |
| proxy_pass https://s3-ap-northeast-1.amazonaws.com/<bucket>/; | |
| proxy_intercept_errors on; | |
| } | |
| # redirect server error pages to the static page /40x.html | |
| # | |
| error_page 403 404 /40x.html; | |
| location = /40x.html { | |
| } | |
| # redirect server error pages to the static page /50x.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