Add REGISTRY_URL option for #25, this will avoid CORS errors

This commit is contained in:
Joxit 2018-01-25 18:39:47 +01:00
parent 325a2417f4
commit bf3e3c9fa8
4 changed files with 56 additions and 2 deletions

34
nginx/default.conf Normal file
View file

@ -0,0 +1,34 @@
server {
listen 80;
server_name localhost;
#! resolver 127.0.0.11; # This is for docker container name resolver
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
#! location /v2 {
#! set $upstream ${REGISTRY_URL};
#! proxy_pass $upstream;
#! }
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}