Rah Yuliantoro

Results 11 comments of Rah Yuliantoro

If this is not a bug, can anyone (from the frappe dev team?) to confirm and close this issue? If it is a bug, what is the temporary solution? Thank...

No manual setup. ``` "wildcard": { "domain": "*.example.com", "ssl_certificate": "/etc/letsencrypt/live/example.com/fullchain.pem", "ssl_certificate_key": "/etc/letsencrypt/live/example.com/privkey.pem" } ``` This also confuses me as this worked before. Then it didn't. I didn't keep track if...

In the console: ``` In [4]: frappe.conf.wildcard Out[4]: [{'domain': '*.example.com', 'ssl_certificate': '/etc/letsencrypt/live/example.com/fullchain.pem', 'ssl_certificate_key': '/etc/letsencrypt/live/example.com/privkey.pem'}] In [5]: frappe.conf.wildcard[0] Out[5]: {'domain': '*. example.com', 'ssl_certificate': '/etc/letsencrypt/live/example.com/fullchain.pem', 'ssl_certificate_key': '/etc/letsencrypt/live/example.com/privkey.pem'} In [6]: frappe.conf.wildcard[0]['domain'] Out[6]: '*....

yes I use wildcard certificates from lets encrypt. The certs work well. I can access the sites in the bench. OK let me check more my configuration and come back...

OK. I found the culprit. I just remember that I restore some sites and yes manually put back the wildcard key because the bench command no longer works for wildcard....

@gavindsouza Sorry for reopening this. I see differences in using dict and list. In common_site_config.json for **wildcard value**: ``` "wildcard": { "domain": "*.example.com", "ssl_certificate": "/etc/letsencrypt/live/example.com/fullchain.pem", "ssl_certificate_key": "/etc/letsencrypt/live/example.com/privkey.pem" } ``` In...

Using the Bench CLI is the problem. Because of the deprecation of bench command to run certbot (`bench setup lets-encrypt` and `bench setup wildcard-ssl`), the `bench setup nginx` result in...

isn't this the purpose of `bench trim-database` and `bench trim-table`?

This is similar to Data field marked as password which has similar behaviour. It seems the export fixture takes the field content instead of from database or the validation takes...

Hello, Thank you for your long and quick response. 👍 I will try your suggestions and see if I can find my way using your guidance. If there is any...