mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 17:28:54 +00:00
12 lines
196 B
Plaintext
12 lines
196 B
Plaintext
|
server {
|
||
|
listen 443 ssl;
|
||
|
server_name fleet;
|
||
|
ssl_certificate fleet.crt;
|
||
|
ssl_certificate_key fleet.key;
|
||
|
|
||
|
location / {
|
||
|
proxy_pass http://fleet-b:8080;
|
||
|
}
|
||
|
}
|
||
|
|