12 lines
134 B
Text
12 lines
134 B
Text
server {
|
|
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
server_name example.domain.xyz;
|
|
|
|
location / {
|
|
proxy_pass http://localhost:8080/;
|
|
}
|
|
|
|
}
|