13 lines
117 B
Plaintext
13 lines
117 B
Plaintext
|
server {
|
||
|
|
||
|
listen 80;
|
||
|
server_name {{ http_host }};
|
||
|
|
||
|
location / {
|
||
|
|
||
|
proxy_pass http://localhost:8888;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|