Explore >> Select a destination


You are here

blog.nobugware.com
| | techblog.jeppson.org
3.0 parsecs away

Travel
| | Nginx proxy manager is a really convenient UI wrapped around nginx. It covers the most common use cases very well. If you have more advanced needs, then it requires some custom configuration. In my case, I wanted to load balance my Proxmox servers. This is how you do that, as per https://nginxproxymanager.com/advanced-config/#custom-nginx-configurations and https://www.reddit.com/r/selfhosted/comments/1fp5mxz/nginx_proxy_manager_fails_when_adding_load/ In ... Continue reading Load balancing behind Nginx Proxy Manager ?
| | bartlomiejmika.com
1.1 parsecs away

Travel
| | How do you write a Golang server using gRPC from scratch? Heres how to do it.
| | jbrandhorst.com
4.5 parsecs away

Travel
| | Create the protobuf interface We'll start by creating a folder for the package we want to create. Lets call it server. Next we type up a .proto file to define the interface between the server and the client. We'll have to include some extra proto annotations in order to have the gRPC-gateway generate the translations methods we need. Lets define a simple service with a single HTTP GET endpoint: service MyServer { rpc Simple(google.
| | pavelkorolev.xyz
40.3 parsecs away

Travel
| I had an idea to host a blog by myself for a long time and finally got it done. The main thing which stopped me until this moment was a lack of experience in DevOps stuff and perfectionism in terms of how to make things easier for me. All I wanted to do is write posts, push it to some repository. Another side of this pipeline looked so complex to implement.