aaPanel_Kern
I was having same issue, you reply helped - i now can create SSL, but after i did it it certificate type changed to "Brand: (STAGING) Artificial Apricot R3" - and when i visit my page in browser it says unsafe, pls help how make generated SSL to be safe?(previosly generated SSL works with "Brand: R3", but newly have "Brand: (STAGING) Artificial Apricot R3")
Previosly sites work with SSL named "R3", when i try create new or renew SSL they SSL generated as "Brand: (STAGING) Artificial Apricot R3" and sites broken as unsafe;
pls help;
I founded that to fix it i need change - "you have not adjusted "set acme-url" to the production URL" - where in AApanel i can set this https://acme-v02.api.letsencrypt.org/directory?
founded in this file it; i never edited it directly
/www/server/panel/class/acme_v2.py
`_mod_index = {True: "Staging", False: "Production"}
_debug = True
_auto_wildcard = False
_dnsapi_file = 'config/dns_api.json'
_save_path = 'vhost/letsencrypt'
_conf_file = 'config/letsencrypt.json'
_stop_rp_file = '{}/data/stop_rp_when_renew_ssl.pl'.format(public.get_panel_path())
_by_panel = None
def __init__(self):
if self._debug:
self._url = 'https://acme-staging-v02.api.letsencrypt.org/directory'
else:
self._url = 'https://acme-v02.api.letsencrypt.org/directory'
self._config = self.read_config()`
In this file i need change _debug to false??
changed, not working(
returned back values with "Fix" button in top.
still not found solution
in /www/server/panel/config/letsencrypt.json i see that it do requests to https://acme-staging-v02.api.letsencrypt.org
how get script point back to production url???