Add Git Servers (#22)

* 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.
This commit is contained in:
2025-01-01 22:04:41 +00:00
committed by GitHub
parent fc7a5dc57d
commit 4c6ddebd1b
4 changed files with 207 additions and 0 deletions

View File

@ -1,7 +1,15 @@
# 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;
}