Docker on Azure – configuration and environment variables

Docker on Azure – configuration and environment variables Goal Let’s assume wa want to load different connection string for application deployed to Azure App Service but we don’t want to change original configuration file appsettings.json. In order to do that we should simply load additional configuration from file appsetting.{Environment}.json, in our case appsettings.AzureDev.json. For that […]

Docker on Azure – SSH connection

Docker on Azure – SSH connection Local hosting Connecting to Docker Container on local machine is quite straightforward – just run linux-based image and use Docker Desktop embedded terminal. Azure hosting Running SSH connection on Azure App Service is a little bit more complicated. There are required basically 3 steps: SSH server installation SSH server […]

Laravel – Load Balancer with HTTPS

Docker on Azure – SSH connection Introduction There are a lot of tutorials how to create Load Balancer but they are mostly just demos or „hello world” and they are not covering some real life problems. Main problem is how to work with SSL provided by third party vendor and keep configuration as simply as […]