Facebook / Instagram require privacy policy
For installation issues, please visit our https://discord.postiz.com for assistance.
Hi as per title, Facebook / Instagram require privacy policy link to register as devs. I'm running this on lxc proxmox debian 12 with cloudflared lxc. How do I put privacy policy link on the login page? Even if i were to mod the html login page, the compose file wouldn't honor it right since it pulls image online?
Feel free to open a pull request for a custom privacy policy @Buster14
Certain other systems I've used allow for custom pages to be dynamically added to the router - I know how to do this in NextJS, might PR this later if I have a chance.
@JamesonRGrieve Would be awesome if you could do that. I know very little typescript and CSS so I can't be much of a help..
This issue is stale because it has been open for 90 days with no activity.
This issue was closed because it has been inactive for 7 days since being marked as stale.
- run
git clone https://github.com/gitroomhq/postiz-app.git
-
cd postiz-app -
change the privacy policy and TOS links in
apps/frontend/src/components/auth/register.tsxto yours -
install docker cli and login
-
run
docker build -t hubusername/postiz:latest -f Dockerfile.dev .
to build the image directly. where 'hubusername' is your Docker Hub Username
- run
docker push hubusername/postiz:latest
to push the image to docker hub
- You can now use this custom container in your Coolify docker-compose file. Here's an example of how to reference it in your docker-compose.yml:
services:
postiz:
image: hubusername/postiz:latest
# ... other configuration options