G
gurnandank
Hi,
I have a web application which uses SSL on one the folders. When I
developed application the set up was webroot and under that folder
called 'secure'.
My ISP has provided a folder called 'secure' on the server which has
shared SSL and is sitting outside of the web root, hence the set up
called 'secure' and then at the same level a folder called web root.
Now, I have two issues:
1. How can I simulate the same set up in VS.NET application and be able
to deploy application?
2. The folder called secure needs to use forms authentication and SSL.
At the moment, I have specified the following in web.config.
What modifications would I have to do to be able to use form
authentication outside the web root.
Thanks in advance.
I have a web application which uses SSL on one the folders. When I
developed application the set up was webroot and under that folder
called 'secure'.
My ISP has provided a folder called 'secure' on the server which has
shared SSL and is sitting outside of the web root, hence the set up
called 'secure' and then at the same level a folder called web root.
Now, I have two issues:
1. How can I simulate the same set up in VS.NET application and be able
to deploy application?
2. The folder called secure needs to use forms authentication and SSL.
At the moment, I have specified the following in web.config.
Code:
<authentication mode="Forms">
<forms name="x" loginUrl="~/secure/login.aspx" path="/" />
</authentication>
What modifications would I have to do to be able to use form
authentication outside the web root.
Thanks in advance.