Dear Team,
I hope this message finds you well.
I am writing to propose the implementation of a reverse proxy server to replace the appsheet.com domain with our client’s custom domain URL. This feature would enhance our user experience by providing a seamless and branded interface for our clients.
It will bring excellent value for AppSheet to commercialize this platform.
@Roderick
@Lauren_vdv
@Peter-Google
@lizlynch
@Adam-google
@Arthur_Rallu
@Adam_Stevens
@goannsplain
@cschalk_ws
@Landan_QREW
Here is the Idea💡 :
server {
listen 80;
server_name clientdomain.com;
location / {
proxy_pass https://appsheet.com;
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;
}
}