Skip to content

Commit 4a51add

Browse files
authored
Merge pull request #6 from j4ys0n/nginx-config
spacing in certbot command
2 parents 06a0e60 + 7b9e9d4 commit 4a51add

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "llm-proxy",
3-
"version": "1.1.2",
3+
"version": "1.1.3",
44
"description": "Manages Nginx for reverse proxy to multiple LLMs, with TLS & Bearer Auth tokens",
55
"main": "dist/index.js",
66
"scripts": {

src/utils/nginx.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ export class NginxManager {
112112
const cloudflareFlags = cloudflare
113113
? ' --dns-cloudflare --dns-cloudflare-credentials /opt/cloudflare/credentials'
114114
: ''
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`
116116
try {
117117
await execAsync(command)
118118
message = 'Certificates obtained successfully.'

0 commit comments

Comments
 (0)