Create a nginx reverse proxy
Sometimes we have to set up nginx behind a proxy either because we can't have multiple public ports open, or because we have complex micro service apps powering our application…
Sometimes we have to set up nginx behind a proxy either because we can't have multiple public ports open, or because we have complex micro service apps powering our application…
Install nginx brew install nginx Update nginx conf nano /usr/local/etc/nginx/nginx.conf Service control commands // Start nginx nginx // Test nginx conf nginx -t // Expected test result output nginx: the…