Hey @redrose-charlie, welcome to the ITFlow community — awesome to hear you're enjoying it so far!
Just to make sure we're on the same page: when you say you'd like the customer portal to be under “support” instead of “PSA,” do you mean you'd like something like support.yourdomain.com
to take your customers straight to the portal (which is by default at itflow.yourdomain.com/client
)?
If so, you can totally set that up using a reverse proxy. Here’s how you can do it for both Apache and Nginx, assuming your ITFlow instance is running under /var/www/your.domain.com
.
this is how i use it on my NGINX config
server {
listen 80;
server_name support.yourdomain.com;
location / {
proxy_pass https://your.domain.com/client/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
in that way you can have:
itflow.yourdomain.com - for admins and technicians
support.yourdomain.com - for clients
sure, you'll need to set the ssl for the secondary domain along with proxy pass
is this what you meant or is something else?