I have ASP systems and APIs hosted on IIS, some of these sites need to bind with HTTPS. In order to bind them, I use a Self-Signed Certificate. The issue is that Browser considers it as untrusted and shows certificate invalid errors.
This is from Google Chrome.
Searching the internet, the solution was to buy a certificate from a trusted provider like ssl.com. My question is:
Do I need to buy a real Domain Name so that I can purchase an SSL certificate to authenticate my site/sites?
I don't want to buy a Domain for every server I have, isn't there another way to authenticate my site/sites.
Also I can't import the Self-Signed Certificate at the client side because there my be 100 users.
Thanks
Asked
Active
Viewed 155 times
-1

adel sameer
- 3
- 2
-
2"I don't want to buy a Domain for every server I have" indicates that you are more suitable to set up your own CA with active directory and issue your own certificates for your servers and users as long as they are in the same active directory. – Lex Li Jul 25 '22 at 16:12
-
The suggestion from @LexLi would work if every client for these servers are in your control in order to install the CA certificate. Even in case they are not, you do not have to buy a new domain for every server, but you can use sub domains in `hostname.example.com` pattern. Also, Let's Encrypt certificates are free. – Esa Jokinen Jul 25 '22 at 17:10
-
This isn't a forum "should my web site have a certificate". – Greg Askew Jul 25 '22 at 20:39
1 Answers
0
SSL Certificate doesn't authenticate just secure the comunication between client and server. it's possible use Apache/Nginx to request some kind of authentication.
If you have a single domain you could buy a Wild Card Certificate(*.example.com). If is not possible buy it you can use Let's Encrypt Certificates that supports wild card certificates, but you need renew it every 3 months.
That is one of the problems when you use Self-Signed Certificate. To install the self-signed certificate you could use Active Directory policy to deploy the Cert massively

Roid
- 184
- 7