2016-10-14 11:13:15 +02:00
|
|
|
worker_processes auto;
|
|
|
|
|
|
|
|
events {
|
|
|
|
worker_connections 1024;
|
|
|
|
use epoll;
|
|
|
|
multi_accept on;
|
|
|
|
}
|
|
|
|
|
|
|
|
http {
|
|
|
|
tcp_nodelay on;
|
|
|
|
|
|
|
|
# this is necessary for us to be able to disable request buffering in all cases
|
|
|
|
proxy_http_version 1.1;
|
|
|
|
|
|
|
|
|
|
|
|
upstream registry {
|
|
|
|
server registry:5000;
|
|
|
|
}
|
|
|
|
|
|
|
|
upstream ui {
|
2017-11-08 14:22:00 +01:00
|
|
|
server ui:8080;
|
2016-10-14 11:13:15 +02:00
|
|
|
}
|
|
|
|
|
2017-03-29 12:51:40 +02:00
|
|
|
log_format timed_combined '$$remote_addr - '
|
|
|
|
'"$$request" $$status $$body_bytes_sent '
|
|
|
|
'"$$http_referer" "$$http_user_agent" '
|
|
|
|
'$$request_time $$upstream_response_time $$pipe';
|
|
|
|
|
|
|
|
access_log /dev/stdout timed_combined;
|
2016-10-14 11:13:15 +02:00
|
|
|
|
|
|
|
server {
|
|
|
|
listen 80;
|
2017-10-13 09:25:19 +02:00
|
|
|
server_tokens off;
|
2016-10-14 11:13:15 +02:00
|
|
|
# disable any limits to avoid HTTP 413 for large image uploads
|
|
|
|
client_max_body_size 0;
|
|
|
|
|
|
|
|
location / {
|
|
|
|
proxy_pass http://ui/;
|
|
|
|
proxy_set_header Host $$host;
|
|
|
|
proxy_set_header X-Real-IP $$remote_addr;
|
|
|
|
proxy_set_header X-Forwarded-For $$proxy_add_x_forwarded_for;
|
|
|
|
|
|
|
|
# When setting up Harbor behind other proxy, such as an Nginx instance, remove the below line if the proxy already has similar settings.
|
|
|
|
proxy_set_header X-Forwarded-Proto $$scheme;
|
|
|
|
|
|
|
|
proxy_buffering off;
|
|
|
|
proxy_request_buffering off;
|
|
|
|
}
|
|
|
|
|
|
|
|
location /v1/ {
|
|
|
|
return 404;
|
|
|
|
}
|
|
|
|
|
|
|
|
location /v2/ {
|
2017-05-02 13:14:47 +02:00
|
|
|
proxy_pass http://ui/registryproxy/v2/;
|
2016-10-14 11:13:15 +02:00
|
|
|
proxy_set_header Host $$http_host;
|
|
|
|
proxy_set_header X-Real-IP $$remote_addr;
|
|
|
|
proxy_set_header X-Forwarded-For $$proxy_add_x_forwarded_for;
|
|
|
|
|
|
|
|
# When setting up Harbor behind other proxy, such as an Nginx instance, remove the below line if the proxy already has similar settings.
|
|
|
|
proxy_set_header X-Forwarded-Proto $$scheme;
|
2017-09-01 12:44:13 +02:00
|
|
|
proxy_buffering off;
|
|
|
|
proxy_request_buffering off;
|
2016-10-14 11:13:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
location /service/ {
|
|
|
|
proxy_pass http://ui/service/;
|
|
|
|
proxy_set_header Host $$host;
|
|
|
|
proxy_set_header X-Real-IP $$remote_addr;
|
|
|
|
proxy_set_header X-Forwarded-For $$proxy_add_x_forwarded_for;
|
|
|
|
|
|
|
|
# When setting up Harbor behind other proxy, such as an Nginx instance, remove the below line if the proxy already has similar settings.
|
|
|
|
proxy_set_header X-Forwarded-Proto $$scheme;
|
|
|
|
|
|
|
|
proxy_buffering off;
|
|
|
|
proxy_request_buffering off;
|
2016-12-09 11:10:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
location /service/notifications {
|
|
|
|
return 404;
|
2016-10-14 11:13:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|