Keep Server Online
If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.
or
A donation makes a contribution towards the costs, the time and effort that's going in this site and building.
Thank You! Steffen
Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
| |
|
Topic: File Transfer Over SSL |
|
Author |
|
apishdad
Joined: 01 Jul 2019 Posts: 44 Location: Canada, Toronto
|
Posted: Mon 07 Dec '20 19:20 Post subject: File Transfer Over SSL |
|
|
is there any specific switches that need to be enabled asides from timeouts for a successful file transfer to take place over a Secure Socket Layer.
My Apache server is accessing a third party vendor that has a API library and it is making API calls to that vendor, all calls return what they are supposed to return except when it comes to file transfers. It gives a page 403 error, saying "Access Forbidden" and I am wondering whether there are any particular ciphers that must be enabled for proper file transfer to take place. |
|
Back to top |
|
tangent Moderator
Joined: 16 Aug 2020 Posts: 348 Location: UK
|
Posted: Wed 09 Dec '20 16:18 Post subject: |
|
|
I think you've answered your own question to some extent, in that you say "all calls return what they are supposed to", excepting file transfers.
The 403 error indicates the user request is forbidden, meaning the third party server understood the data request, but declined it. So this doesn't sound like an issue with the SSL connection or configuration per se, but rather user authentication/authorisation, since presumably the third party site doesn't allow anonymous access to these files.
So how are user credentials being passed across to the back end? Through header cookies, query string parameters, message body, etc.?
Does your Apache configuration have any mod_rewrite or other header manipulation logic that could affect that detail being carried across to the back-end via your proxy?
It may help others respond if you are able to post your Apache configuration details (suitably anonymized), to https://apaste.info |
|
Back to top |
|
|
|
|
|
|