-
-
Save RyanWor/e208cad41fd29e7fa2e1fa2688f3c867 to your computer and use it in GitHub Desktop.
Config file to define a frontend for registry UI
This file contains 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
upstream registry-ui { | |
server 10.0.0.15:5008; | |
server 10.0.0.150:5008; | |
} | |
server { | |
listen 80; | |
server_name registry-ui.ryann.dev; | |
location / { | |
proxy_http_version 1.1; | |
proxy_set_header Connection ""; | |
proxy_pass http://registry-ui/; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment