host https website using IIS across local area network
up vote
1
down vote
favorite
I have a website hosted on IIS which can accessed across the Local Area Network by using the IP address of the Server computer. But I can only access the website on client computers using http, when I use https I get security alert on the browsers as shown in the image below,
I even got a self signed certificate on the server computer and in the server computer I can use https without any security alert but I can't do the same on client computers on LAN. Is it possible to achieve that? If so please let me know. Thanks in advance :)
asp.net iis-8 lan
add a comment |
up vote
1
down vote
favorite
I have a website hosted on IIS which can accessed across the Local Area Network by using the IP address of the Server computer. But I can only access the website on client computers using http, when I use https I get security alert on the browsers as shown in the image below,
I even got a self signed certificate on the server computer and in the server computer I can use https without any security alert but I can't do the same on client computers on LAN. Is it possible to achieve that? If so please let me know. Thanks in advance :)
asp.net iis-8 lan
“I get security alert on the browsers.” The security alert is important, as it can tell you what might be wrong.
– Lex Li
Nov 13 at 15:27
@LexLi Alert as in it asks for certificates
– prkash
Nov 13 at 15:27
blog.lextudio.com/… Don't make a statement using your own words. Show the exact alert message or paste a screenshot as part of the question.
– Lex Li
Nov 13 at 15:28
@LexLi ok added a screenshot
– prkash
Nov 13 at 15:35
The error message is quite clear, that the machine with the browser opened did not trust the self-signed certificate. You either make that machine trust it (by installing it to that machine), or switch to a true certificate that is trusted everywhere.
– Lex Li
Nov 13 at 15:38
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I have a website hosted on IIS which can accessed across the Local Area Network by using the IP address of the Server computer. But I can only access the website on client computers using http, when I use https I get security alert on the browsers as shown in the image below,
I even got a self signed certificate on the server computer and in the server computer I can use https without any security alert but I can't do the same on client computers on LAN. Is it possible to achieve that? If so please let me know. Thanks in advance :)
asp.net iis-8 lan
I have a website hosted on IIS which can accessed across the Local Area Network by using the IP address of the Server computer. But I can only access the website on client computers using http, when I use https I get security alert on the browsers as shown in the image below,
I even got a self signed certificate on the server computer and in the server computer I can use https without any security alert but I can't do the same on client computers on LAN. Is it possible to achieve that? If so please let me know. Thanks in advance :)
asp.net iis-8 lan
asp.net iis-8 lan
edited Nov 13 at 15:35
asked Nov 13 at 15:03
prkash
314113
314113
“I get security alert on the browsers.” The security alert is important, as it can tell you what might be wrong.
– Lex Li
Nov 13 at 15:27
@LexLi Alert as in it asks for certificates
– prkash
Nov 13 at 15:27
blog.lextudio.com/… Don't make a statement using your own words. Show the exact alert message or paste a screenshot as part of the question.
– Lex Li
Nov 13 at 15:28
@LexLi ok added a screenshot
– prkash
Nov 13 at 15:35
The error message is quite clear, that the machine with the browser opened did not trust the self-signed certificate. You either make that machine trust it (by installing it to that machine), or switch to a true certificate that is trusted everywhere.
– Lex Li
Nov 13 at 15:38
add a comment |
“I get security alert on the browsers.” The security alert is important, as it can tell you what might be wrong.
– Lex Li
Nov 13 at 15:27
@LexLi Alert as in it asks for certificates
– prkash
Nov 13 at 15:27
blog.lextudio.com/… Don't make a statement using your own words. Show the exact alert message or paste a screenshot as part of the question.
– Lex Li
Nov 13 at 15:28
@LexLi ok added a screenshot
– prkash
Nov 13 at 15:35
The error message is quite clear, that the machine with the browser opened did not trust the self-signed certificate. You either make that machine trust it (by installing it to that machine), or switch to a true certificate that is trusted everywhere.
– Lex Li
Nov 13 at 15:38
“I get security alert on the browsers.” The security alert is important, as it can tell you what might be wrong.
– Lex Li
Nov 13 at 15:27
“I get security alert on the browsers.” The security alert is important, as it can tell you what might be wrong.
– Lex Li
Nov 13 at 15:27
@LexLi Alert as in it asks for certificates
– prkash
Nov 13 at 15:27
@LexLi Alert as in it asks for certificates
– prkash
Nov 13 at 15:27
blog.lextudio.com/… Don't make a statement using your own words. Show the exact alert message or paste a screenshot as part of the question.
– Lex Li
Nov 13 at 15:28
blog.lextudio.com/… Don't make a statement using your own words. Show the exact alert message or paste a screenshot as part of the question.
– Lex Li
Nov 13 at 15:28
@LexLi ok added a screenshot
– prkash
Nov 13 at 15:35
@LexLi ok added a screenshot
– prkash
Nov 13 at 15:35
The error message is quite clear, that the machine with the browser opened did not trust the self-signed certificate. You either make that machine trust it (by installing it to that machine), or switch to a true certificate that is trusted everywhere.
– Lex Li
Nov 13 at 15:38
The error message is quite clear, that the machine with the browser opened did not trust the self-signed certificate. You either make that machine trust it (by installing it to that machine), or switch to a true certificate that is trusted everywhere.
– Lex Li
Nov 13 at 15:38
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
Your certificate is not trusted by other computers, because they don't recognize you as a trusted authority, the solution is easy, even if you ask google it will respond with steps to do this (for chrome in this example):
Go to Chrome Settings.
Click on "advanced settings"
Under HTTPS/SSL click to "Manage Certificates"
Go to "Trusted Root Certificate Authorities"
Click to "Import"
There will be a pop-up window that will ask you if you want to install this certificate. Click "yes".
Better idea maybe, instead of making them trust your self-signed certificate would be to generate a certificate by some verified authority.
I have recently generated a free certificate by the https://letsencrypt.org/ portal (and no, I do not have any interest in promoting it) except it's free and it simply works fine.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
Your certificate is not trusted by other computers, because they don't recognize you as a trusted authority, the solution is easy, even if you ask google it will respond with steps to do this (for chrome in this example):
Go to Chrome Settings.
Click on "advanced settings"
Under HTTPS/SSL click to "Manage Certificates"
Go to "Trusted Root Certificate Authorities"
Click to "Import"
There will be a pop-up window that will ask you if you want to install this certificate. Click "yes".
Better idea maybe, instead of making them trust your self-signed certificate would be to generate a certificate by some verified authority.
I have recently generated a free certificate by the https://letsencrypt.org/ portal (and no, I do not have any interest in promoting it) except it's free and it simply works fine.
add a comment |
up vote
1
down vote
Your certificate is not trusted by other computers, because they don't recognize you as a trusted authority, the solution is easy, even if you ask google it will respond with steps to do this (for chrome in this example):
Go to Chrome Settings.
Click on "advanced settings"
Under HTTPS/SSL click to "Manage Certificates"
Go to "Trusted Root Certificate Authorities"
Click to "Import"
There will be a pop-up window that will ask you if you want to install this certificate. Click "yes".
Better idea maybe, instead of making them trust your self-signed certificate would be to generate a certificate by some verified authority.
I have recently generated a free certificate by the https://letsencrypt.org/ portal (and no, I do not have any interest in promoting it) except it's free and it simply works fine.
add a comment |
up vote
1
down vote
up vote
1
down vote
Your certificate is not trusted by other computers, because they don't recognize you as a trusted authority, the solution is easy, even if you ask google it will respond with steps to do this (for chrome in this example):
Go to Chrome Settings.
Click on "advanced settings"
Under HTTPS/SSL click to "Manage Certificates"
Go to "Trusted Root Certificate Authorities"
Click to "Import"
There will be a pop-up window that will ask you if you want to install this certificate. Click "yes".
Better idea maybe, instead of making them trust your self-signed certificate would be to generate a certificate by some verified authority.
I have recently generated a free certificate by the https://letsencrypt.org/ portal (and no, I do not have any interest in promoting it) except it's free and it simply works fine.
Your certificate is not trusted by other computers, because they don't recognize you as a trusted authority, the solution is easy, even if you ask google it will respond with steps to do this (for chrome in this example):
Go to Chrome Settings.
Click on "advanced settings"
Under HTTPS/SSL click to "Manage Certificates"
Go to "Trusted Root Certificate Authorities"
Click to "Import"
There will be a pop-up window that will ask you if you want to install this certificate. Click "yes".
Better idea maybe, instead of making them trust your self-signed certificate would be to generate a certificate by some verified authority.
I have recently generated a free certificate by the https://letsencrypt.org/ portal (and no, I do not have any interest in promoting it) except it's free and it simply works fine.
answered Nov 13 at 16:15
Jakub Szumiato
1,1431716
1,1431716
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53283863%2fhost-https-website-using-iis-across-local-area-network%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
“I get security alert on the browsers.” The security alert is important, as it can tell you what might be wrong.
– Lex Li
Nov 13 at 15:27
@LexLi Alert as in it asks for certificates
– prkash
Nov 13 at 15:27
blog.lextudio.com/… Don't make a statement using your own words. Show the exact alert message or paste a screenshot as part of the question.
– Lex Li
Nov 13 at 15:28
@LexLi ok added a screenshot
– prkash
Nov 13 at 15:35
The error message is quite clear, that the machine with the browser opened did not trust the self-signed certificate. You either make that machine trust it (by installing it to that machine), or switch to a true certificate that is trusted everywhere.
– Lex Li
Nov 13 at 15:38