insatiable-foo
Results
2
comments of
insatiable-foo
we should build an image with custom app, we followed this [https://github.com/frappe/frappe_docker/blob/main/docs/custom-apps.md](https://github.com/frappe/frappe_docker/blob/main/docs/custom-apps.md) to install custom apps it worked
Fixed by making changes to `resources/nginx-template.conf` I changed this ``` rewrite ^(.+)/$ $1 permanent; rewrite ^(.+)/index\.html$ $1 permanent; rewrite ^(.+)\.html$ $1 permanent; ``` to ``` rewrite ^(.+)/$ "https://$host$1" permanent; rewrite...