11 lines
169 B
Plaintext
11 lines
169 B
Plaintext
|
server {
|
||
|
listen 443 ssl http2;
|
||
|
listen [::]:443 ssl http2;
|
||
|
server_name local2.mracs.dev;
|
||
|
|
||
|
location / {
|
||
|
proxy_pass http://localhost:8080;
|
||
|
}
|
||
|
|
||
|
}
|