Created
December 14, 2019 18:05
-
-
Save wshihadeh/64bbd0afa761d8dfa4078cc8d4183757 to your computer and use it in GitHub Desktop.
Portus ngnx confiigurations
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
server { | |
listen 80; | |
server_name hub.*; | |
# Docker-specific stuff. | |
proxy_set_header Host $http_host; # required for Docker client sake | |
proxy_set_header X-Forwarded-Host $http_host; | |
proxy_set_header X-Real-IP $remote_addr; | |
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
proxy_set_header X-Scheme $scheme; | |
# disable any limits to allow unlmited upload and avoid HTTP 413 for large image uploads | |
client_max_body_size 0; | |
# required to avoid HTTP 411 | |
chunked_transfer_encoding on; | |
# Don't allow the browser to render the page inside a frame or iframe | |
# and avoid Clickjacking. More in the following link: | |
# | |
# https://developer.mozilla.org/en-US/docs/HTTP/X-Frame-Options | |
add_header X-Frame-Options DENY; | |
# Disable content-type sniffing on some browsers. | |
add_header X-Content-Type-Options nosniff; | |
# This header enables the Cross-site scripting (XSS) filter built into | |
# most recent web browsers. It's usually enabled by default anyway, so the | |
# role of this header is to re-enable the filter for this particular | |
# website if it was disabled by the user. | |
add_header X-XSS-Protection "1; mode=block"; | |
# Add header for IE in compatibility mode. | |
add_header X-UA-Compatible "IE=edge"; | |
# Redirect (most) requests to /v2/* to the Docker Registry | |
location /v2/ { | |
resolver 127.0.0.11 ipv6=off; | |
# Do not allow connections from docker 1.5 and earlier | |
# docker pre-1.6.0 did not properly set the user agent on ping, catch "Go *" user agents | |
if ($http_user_agent ~ "^(docker\/1\.(3|4|5(?!\.[0-9]-dev))|Go ).*$" ) { | |
return 404; | |
} | |
## If $docker_distribution_api_version is empty, the header will not be added. | |
## See the map directive above where this variable is defined. | |
add_header 'Docker-Distribution-Api-Version' $docker_distribution_api_version always; | |
set $target registry_server:8080; | |
proxy_pass http://$target; | |
proxy_set_header Host $http_host; # required for docker client's sake | |
proxy_set_header X-Real-IP $remote_addr; # pass on real client's IP | |
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
proxy_set_header X-Forwarded-Proto http; | |
proxy_read_timeout 900; | |
proxy_buffering on; | |
} | |
# Portus needs to handle /v2/token for authentication | |
location = /v2/token { | |
resolver 127.0.0.11 ipv6=off; | |
set $target portus_server:3000; | |
proxy_pass http://$target; | |
proxy_set_header Host $http_host; # required for docker client's sake | |
proxy_set_header X-Real-IP $remote_addr; # pass on real client's IP | |
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
proxy_set_header X-Forwarded-Proto $scheme; | |
proxy_read_timeout 900; | |
proxy_buffering on; | |
} | |
# Portus needs to handle /v2/webhooks/events for notifications | |
location = /v2/webhooks/events { | |
resolver 127.0.0.11 ipv6=off; | |
set $target portus_server:3000; | |
proxy_pass http://$target; | |
proxy_set_header Host $http_host; # required for docker client's sake | |
proxy_set_header X-Real-IP $remote_addr; # pass on real client's IP | |
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
proxy_set_header X-Forwarded-Proto $scheme; | |
proxy_read_timeout 900; | |
proxy_buffering on; | |
} | |
# Portus handles everything else for the UI | |
location / { | |
try_files $uri/index.html $uri.html $uri @portus; | |
} | |
location @portus { | |
resolver 127.0.0.11 ipv6=off; | |
set $target portus_server:3000; | |
proxy_pass http://$target; | |
proxy_set_header Host $http_host; # required for docker client's sake | |
proxy_set_header X-Real-IP $remote_addr; # pass on real client's IP | |
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
proxy_set_header X-Forwarded-Proto $scheme; | |
proxy_read_timeout 900; | |
proxy_buffering on; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment