File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " llm-proxy" ,
3
- "version" : " 1.1.2 " ,
3
+ "version" : " 1.1.3 " ,
4
4
"description" : " Manages Nginx for reverse proxy to multiple LLMs, with TLS & Bearer Auth tokens" ,
5
5
"main" : " dist/index.js" ,
6
6
"scripts" : {
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ export class NginxManager {
112
112
const cloudflareFlags = cloudflare
113
113
? ' --dns-cloudflare --dns-cloudflare-credentials /opt/cloudflare/credentials'
114
114
: ''
115
- const command = `certbot --nginx -n --agree-tos --issuance-timeout 120 ${ cloudflareFlags } ${ domainArgs } --preferred-challenges dns-01`
115
+ const command = `certbot --nginx -n --agree-tos${ cloudflareFlags } ${ domainArgs } --preferred-challenges dns-01`
116
116
try {
117
117
await execAsync ( command )
118
118
message = 'Certificates obtained successfully.'
You can’t perform that action at this time.
0 commit comments