10 lines
125 B
Text
10 lines
125 B
Text
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
server_name example.org;
|
|
|
|
location / {
|
|
proxy_pass http://localhost:8080/;
|
|
}
|
|
}
|