I actually think I'm preferring nginx to apache right now lol.

#apache
#nginx
#websitedevelopment

Apache has had its day.

@acceptingmyfate.bsky.social

#apache
<VirtualHost *:80>
* Server info *
ProxyPass / http://localhost:3000/
</VirtualHost>

#nginx
server {
listen 80;
* server info *
location / {
proxy_pass http://localhost:3000;
}
}