parse-community / parse-server-fs-adapter

parse-server file system storage adapter
42 stars 31 forks source link

Port not included from ParseServer's serverURL #11

Closed mrclay closed 6 years ago

mrclay commented 6 years ago

Our serverURL is http://localhost:8080/parse but Parse.File data is sent to the client with url: "http://localhost/parse/files/...". The URLs are otherwise correct, they're just missing the port.

I'm new to Parse so apologies if I'm missing something.

flovilmart commented 6 years ago

You should set publicServerURL with a publicly accessible URL

mrclay commented 6 years ago

Thank you!