I have hosted my Parse-Server on DigitalOcean by following these tutorials
1. www.digitalocean.com/community/tutorials/how-to-migrate-a-parse-app-to-parse-server-on-ubuntu-14-04
2. www.digitalocean.com/community/tutorials/how-to-secure-nginx-on-ubuntu-14-04
Everything works nicely except that any file uploaded to parse-server has url like -
"https://domain_name.com:1337/parse/files/.....file_name.png"
How can I configure my parse-server to generate URL without port number (1337) from file URL?
Like this - "https://domain_name.com/parse/files/.....file_name.png"
I have set following parameters for parse-server
"PARSE_SERVER_URL": "https://domain_name.com/parse",
"PARSE_PUBLIC_SERVER_URL": "https://domain_name.com/parse",
Thanks!