mirror of
https://github.com/Noratrieb/vps.git
synced 2026-01-14 16:55:00 +01:00
18 lines
No EOL
326 B
Nginx Configuration File
18 lines
No EOL
326 B
Nginx Configuration File
events {
|
|
worker_connections 512;
|
|
}
|
|
|
|
http {
|
|
server {
|
|
listen 80;
|
|
|
|
location /docker-registry {
|
|
rewrite /docker-registry(.*) $1 break;
|
|
proxy_pass http://registry:5000;
|
|
proxy_redirect off;
|
|
proxy_set_header Host $host;
|
|
}
|
|
}
|
|
|
|
server_tokens off;
|
|
} |