Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I have a GoDaddy WildCard Certificate Installed in my Windows 2008 R2 Box.
I'm running IIS 7.5
My cert is for *.MyDomain.com
I plan to use it on 50-100 sub domains. Each one will have a unique IP.
I have the cert installed the on server.
for some reason it only works on the 1st site i installed, and not other sites.
Those other sites just point to the first site when accesses via https
- and yes, I just a different IP for those sites.
thanks!
That definitely sounds like a symptom of all the sites using the same IP address. If you are sure each site is bound to a different site, maybe try these instructions: http://microsync.net/web-server/run-iis-and-apache-webserver-on-same-machine-on-same-port-80.html
Since it is a wildcard certificate, you can also put all the sites on the same IP address and configure them to use the certificate using these instructions: http://www.sslshopper.com/article-ssl-host-headers-in-iis-7.html
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
I have a Bitnami Wordpress site using cPanel. The site is using cPanel's SSL. I want to migrate to another server without cPanel.
I've done the necessary files migration and want to use Let'sEncrypt for the new server. This is the command line sudo /opt/bitnami/bncert-tool
However, it requires DNS validation to proceed with the SSL setup. I feel jittery to point the DNS to the new server without doing a thorough checking first.
Is there a way to set up Let's Encrypt without DNS validation first?
I don't know if this question belongs here, if is inappropriate can you kindly direct me to the right SE community? Thanks.
The Let's Encrypt certbot tool supports manual certificate generation. This tool will ask you to manually create TXT records at your DNS server. This command can be run at your web server or any system that has certbot installed.
Example command:
sudo ./certbot -d example.com -d www.example.com --manual --preferred-challenges dns certonly
https://certbot.eff.org/docs/using.html#manual
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 3 years ago.
Improve this question
I am installing my wordpress website into digital-ocean.Its working fine.Now i need to install ssl on my website. My domain and SSL both are bought form Namecheap .Using Apache in Ubuntu 18.04 on digital-ocean . I didn't find any right solution to add ssl into my website. Please help to solve this problem.
Here's a link to how to install an SSL certificate on Apache. Install SSL
RapidSSL is the one offered by Namecheap. First install the SSL on to your sever then you'll have to change your htaccess or back end wordpress to force SSL connections.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 years ago.
Improve this question
I have a domain for example abc.com
How can I create development environment dev.abc.com not abc.com/dev
Thanks for your time!
If the actual hosting is with GoDaddy, create a subdomain in their control panel: https://ca.godaddy.com/help/how-do-i-create-a-subdomain-in-simple-control-panel-2290
If your hosting is with someone else but your DNS is hosted with godaddy, create an A Record for the subdomain in GoDaddy: https://ca.godaddy.com/help/add-an-a-record-19238 with the value pointing to your server ip.
On the server-side, lets assume you're using cPanel, please follow this guide to add a subdomain: http://www.inmotionhosting.com/support/edu/cpanel/cpanel-manage-domains/creating-a-subdomain
After creating the subdomain there should be a folder called subdomain (or whatever you named the subdomain) in your root folder or public_html , thats where you should be putting files for subdomain.abc.com.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I have a wordpress site at a Ubuntu 12.04 server with Apache installed as the web server. I would like to temporarily remove it from my website and enable another website (not wordpress, just plain HTML,PHP). How can I do that?
thanks
Create a dir called "old"
Move everything into "old"
Create a file called .htaccess inside the "old"-directory
Write the following into the .htaccess file:
deny from all
Upload your new website inside the web-root directory
If you access the "old" directory from web you should get an forbidden message.
If you wanna try to do something better you can use virtual hosts
http://httpd.apache.org/docs/2.2/vhosts/
In simple: you can run more sites at the same time on your server.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I'm sorry, but I am confused, so I thought to ask my question here.
I have a Windows Azure Reserved Website instance, and added a domain through Managed Domains.
To get the domain added I had to add this in my DNS:
awverify CNAME awverify..azurewebsites.net.
I added the domain in my Wordpress MultiSite setup as follows:
domainname: http://domainname.com using subdirectories.
To this point everything works perfect, I can access the domain on domain.com without the www prefix.
With typing this question, I found also this topic Wordpress multisite, domain mapping www issue
I installed MU, and followed everything. The mapping works, the domain.com maps to www.domain.com but I get again the Azure Server Error:
404 - File or directory not found. The resource you are looking for
might have been removed, had its name changed, or is temporarily
unavailable.
Are my DNS settings wrong, or is this Wordpress or Azure specific?
Have you added a cname record for "www.yourdomain.com" ? I have not used Azure, or I would provide a more complete answer, but it sounds like you just defined the DNS entry for yourdomain.com . You also need to create a CNAME for "www.yourdomain.com"
edit: Also, if you type "ping yourdomain.com" into the command prompt, does it show the same IP as "ping www.yourdomain.com" ? If you provide the actual domain it would be easier to troubleshoot as well.