Skip to content

Instantly share code, notes, and snippets.

View shiroze's full-sized avatar

Juniardy shiroze

View GitHub Profile
@shiroze
shiroze / nginx-http.conf
Last active December 1, 2024 07:19
Nginx
http {
...
server {
listen 80;
server_name example.com;
# Proxy requests to Program A (port 3000)
location /PAA {
root "C:/D/AppHost/web/build/";
proxy_pass http://localhost:3000;