8 lines
107 B
Plaintext
8 lines
107 B
Plaintext
|
server {
|
||
|
listen 80;
|
||
|
server_name git.shockrah.xyz;
|
||
|
location / {
|
||
|
proxy_pass http://localhost:3000;
|
||
|
}
|
||
|
}
|