Chad
4c6ddebd1b
* Create files for two possible Git server frontends for moving off of GitHub. * Add test results and uncomment preferred configuration style. * Add example for Git repo server. * Add details on how the connection alias is used. * Finalize testing and provide recommended setups.
16 lines
470 B
Plaintext
16 lines
470 B
Plaintext
# Local servers for everything related to `example.com`.
|
|
# If specific ports are needed they will go here instead of the `conf.d` file(s).
|
|
|
|
# NOTE: 'server hyperling.com;' is used so that the file works in production,
|
|
# it is not part of the example, the commented value is what's important.
|
|
|
|
upstream example-proxy-site {
|
|
#server 127.0.0.1:8080;
|
|
server hyperling.com;
|
|
}
|
|
|
|
upstream example-git-site {
|
|
#server 127.0.0.1:3000;
|
|
server hyperling.com;
|
|
}
|