8 lines
118 B
Plaintext
8 lines
118 B
Plaintext
server {
|
|
listen 80;
|
|
server_name peach.local www.peach.local;
|
|
location / {
|
|
proxy_pass http://127.0.0.1:3000;
|
|
}
|
|
}
|