We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 889ec9b commit 5d49799Copy full SHA for 5d49799
ee/cli/plugins/site.py
@@ -893,7 +893,7 @@ def doupdatesite(self, pargs):
893
proxyinfo = proxyinfo.split(':')
894
host = proxyinfo[0].strip()
895
port = '80' if len(proxyinfo) < 2 else proxyinfo[1].strip()
896
- elif stype is None and not pargs.proxy:
+ elif stype is None and not (pargs.proxy or pargs.letsencrypt):
897
stype, cache = 'html', 'basic'
898
elif stype and pargs.proxy:
899
Log.error(self, "--proxy can not be used with other site types")
0 commit comments