Nginx
- How I build a basic nginx config without starting from an empty file
An nginx config is easier to write when I start from the kind of site I am serving: static files, SPA, PHP, or reverse proxy. The nginx Config Generator tool helps me inspect the input and output without writing a …
- How I build an nginx reverse proxy config without memorising everything
An nginx reverse proxy config can look intimidating when you are still learning: server { listen 80; server_name app.example.com; location / { proxy_pass http://127.0.0.1:3000; proxy_set_header Host $host; …