Skip to content

Commit c16415c

Browse files
authored
Added conf for firefly-pico container
1 parent 42166c1 commit c16415c

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

firefly-pico.subdomain.conf.sample

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
## Version 2026/01/16
2+
# make sure that your firefly-pico container is named firefly-pico
3+
# make sure that your dns has a cname set for firefly-pico
4+
5+
server {
6+
listen 443 ssl;
7+
listen [::]:443 ssl;
8+
9+
server_name firefly-pico.*;
10+
11+
include /config/nginx/ssl.conf;
12+
13+
client_max_body_size 0;
14+
15+
location / {
16+
include /config/nginx/proxy.conf;
17+
include /config/nginx/resolver.conf;
18+
19+
set $upstream_app firefly-pico;
20+
set $upstream_port 80;
21+
set $upstream_proto http;
22+
23+
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
24+
}
25+
}

0 commit comments

Comments
 (0)