BanchoNET
1.0.0
A dotnet implementation of osu!bancho server.
Go to the Projects section to see the progress of the BanchoNET project.
To build the BanchoNET server, follow these steps:
git clone https://github.com/NovemoG/BanchoNET.gitcd BanchoNETdotnet restoredotnet buildThis will create a build of your project in the ./bin/Debug/net8.0 directory.
cd /etc/nginx/sites-enabledtouch banchonet.confserver {
listen 80;
server_name c.DOMAIN;
location / {
proxy_pass https://0.0.0.0:5000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
server {
listen 443 ssl;
server_name osu.DOMAIN c4.DOMAIN c.DOMAIN;
location / {
proxy_pass https://0.0.0.0:5000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
Replace DOMAIN with your domain.
Add all subdomain records that are present in the config file above.
To run the BanchoNET server, follow these steps:
cd BanchoNETdotnet runThis will start the BanchoNET server. You should see output indicating that the server is running.
We are planning on adding docker support.
git checkout -b feature/AmazingFeaturegit commit -m 'Add some AmazingFeature'git push origin feature/AmazingFeatureBancho.NET is licensed under the MIT License. Please see the LICENSE file for more information.