Hi All,
I have an ASP.Net project using AJAX that I am putting on a server behind a reverse proxy.
Lets say my project is located on the server here:
C:\inetpub\wwwroot\proj\app
So the bin folder should be here:
C:\inetpub\wwwroot\proj\app\Bin
The reverse proxy causes the server to automatically look for the Bin folder for the project here:
C:\inetpub\wwwroot\Bin
because when working behind a reverse proxy all file references need to be relative to the root directory.
I'm assuming that the Bin path is by default set to "~\Bin", which is not relative to the root directory.
I need my Bin folder path to be set to ".\Bin" Any ideas?
Thanks
EDIT:
Adding a BIN folder to C:\inetpub\wwwroot\Bin is NOT an option.
Thanks