https only connects in local using ApacheApache 2.2.14: SSLCARevocation locationSSL, Apache, and Subdomains on a Static IPfirst time setting up ssl, tutorials haven't been too helpfulLive site with ssl enabled redirects to the staging site without sslIs it bad to redirect http to https?Virtual hosts with port 80 & 443 not workingsetting up multiple ssl certificates on same server/ip on CENTOs with apache 2.2How to Check if a SSL Certificate is successfully renewedAllow https access only on Apache?Disabling weak protocols and ciphers in Centos with Apache

Why are MBA programs closing in the United States?

Proving that a Russian cryptographic standard is too structured

Why isn't Bash trap working if output is redirected to stdout?

How durable are silver inlays on a blade?

Flat with smooth fibers implies formally smooth?

The origin of the Russian proverb about two hares

Could a person damage a jet airliner - from the outside - with their bare hands?

Is Lambda Calculus purely syntactic?

Tikz-cd diagram arrow passing under a node - not crossing it

How do you play "tenth" chords on the guitar?

I've been given a project I can't complete, what should I do?

Was planting UN flag on Moon ever discussed?

Latex - unable to get proper boxes

What is the Leave No Trace way to dispose of coffee grounds?

How can I write the maximally mixed state on m qubits as a linear combination of basis vectors

Make Gimbap cutter

Does the Nuka-Cola bottler actually generate nuka cola?

Is it safe to remove python 2.7.15rc1 from Ubuntu 18.04?

Do you have to have figures when playing D&D?

If I had a daughter who (is/were/was) cute, I would be very happy

Grep Match and extract

Do you need to let the DM know when you are multiclassing?

Converting from CMYK to RGB (to work with it), then back to CMYK

Can there be absolute velocity?



https only connects in local using Apache


Apache 2.2.14: SSLCARevocation locationSSL, Apache, and Subdomains on a Static IPfirst time setting up ssl, tutorials haven't been too helpfulLive site with ssl enabled redirects to the staging site without sslIs it bad to redirect http to https?Virtual hosts with port 80 & 443 not workingsetting up multiple ssl certificates on same server/ip on CENTOs with apache 2.2How to Check if a SSL Certificate is successfully renewedAllow https access only on Apache?Disabling weak protocols and ciphers in Centos with Apache






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















I'have configured apache to use ssl certificates, when I type https://mysite.com it connects on local, but when I try outside of the server, it doesn't connect.



Here are my config and other details, I hope some one can help me.



Firewall exception for port 443 is enabled.



OS :



windows server 2008 R2



Web server:



AppServ 2.5.10(Apache 2.2.8,PHP 5.2.6,MySQL 5.0.51b,phpMyAdmin-2.10.3)



Note: I have purchased the domain at godaddy.com , when I type, www.mysite or mysite.com it works good(it have been working good since 2 years ago)



httpd.conf file



Added :

Listen 443

uncomment:

LoadModule ssl_module modules/mod_ssl.so

added:

<VirtualHost 23.23.95.84:80>
DocumentRoot C:/AppServ/www/SaresInterno
ServerName staging.soluntech.com
SSLEngine on
SSLCertificateFile C:/AppServ/Apache2.2/conf/certificate.crt
SSLCertificateKeyFile C:/AppServ/Apache2.2/conf/ssl.key
SSLCertificateChainFile C:/AppServ/Apache2.2/conf/sub.class1.server.ca.pem
SSLCACertificateFile C:/AppServ/Apache2.2/conf/ca.pem
SSLProtocol all -SSLv2
SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM
SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
CustomLog C:/AppServ/Apache2.2/logs/ssl_request_log
"%t %h %SSL_PROTOCOLx %SSL_CIPHERx "%r" %b"
</VirtualHost>

<VirtualHost _default_:443>
DocumentRoot C:/AppServ/www/SaresInterno
ServerName staging.soluntech.com
SSLEngine on
SSLCertificateFile C:/AppServ/Apache2.2/conf/certificate.crt
SSLCertificateKeyFile C:/AppServ/Apache2.2/conf/ssl.key
SSLCertificateChainFile C:/AppServ/Apache2.2/conf/sub.class1.server.ca.pem
SSLCACertificateFile C:/AppServ/Apache2.2/conf/ca.pem
SSLProtocol all -SSLv2
SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM
SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
CustomLog C:/AppServ/Apache2.2/logs/ssl_request_log
"%t %h %SSL_PROTOCOLx %SSL_CIPHERx "%r" %b"
</VirtualHost>









share|improve this question















migrated from stackoverflow.com Oct 15 '12 at 6:05


This question came from our site for professional and enthusiast programmers.


















  • Don't put the SSL directives (in particular SSLEngine on) in your virtualhost on port 80. Have you checked your firewall?

    – Bruno
    Oct 12 '12 at 21:27











  • Yes I have, if I type onm console, telnet myip 443 from a remote location , it connects. Gonna comment the SSLEngine on in my virtual host port 80

    – Guille
    Oct 13 '12 at 15:02











  • What does "it doesn't work" mean? Certificate error? Can't connect? Internal server error?

    – David
    Oct 15 '12 at 6:09











  • Hi David, It Can't connect remotely, but connect locally.

    – Guille
    Oct 16 '12 at 18:42

















0















I'have configured apache to use ssl certificates, when I type https://mysite.com it connects on local, but when I try outside of the server, it doesn't connect.



Here are my config and other details, I hope some one can help me.



Firewall exception for port 443 is enabled.



OS :



windows server 2008 R2



Web server:



AppServ 2.5.10(Apache 2.2.8,PHP 5.2.6,MySQL 5.0.51b,phpMyAdmin-2.10.3)



Note: I have purchased the domain at godaddy.com , when I type, www.mysite or mysite.com it works good(it have been working good since 2 years ago)



httpd.conf file



Added :

Listen 443

uncomment:

LoadModule ssl_module modules/mod_ssl.so

added:

<VirtualHost 23.23.95.84:80>
DocumentRoot C:/AppServ/www/SaresInterno
ServerName staging.soluntech.com
SSLEngine on
SSLCertificateFile C:/AppServ/Apache2.2/conf/certificate.crt
SSLCertificateKeyFile C:/AppServ/Apache2.2/conf/ssl.key
SSLCertificateChainFile C:/AppServ/Apache2.2/conf/sub.class1.server.ca.pem
SSLCACertificateFile C:/AppServ/Apache2.2/conf/ca.pem
SSLProtocol all -SSLv2
SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM
SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
CustomLog C:/AppServ/Apache2.2/logs/ssl_request_log
"%t %h %SSL_PROTOCOLx %SSL_CIPHERx "%r" %b"
</VirtualHost>

<VirtualHost _default_:443>
DocumentRoot C:/AppServ/www/SaresInterno
ServerName staging.soluntech.com
SSLEngine on
SSLCertificateFile C:/AppServ/Apache2.2/conf/certificate.crt
SSLCertificateKeyFile C:/AppServ/Apache2.2/conf/ssl.key
SSLCertificateChainFile C:/AppServ/Apache2.2/conf/sub.class1.server.ca.pem
SSLCACertificateFile C:/AppServ/Apache2.2/conf/ca.pem
SSLProtocol all -SSLv2
SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM
SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
CustomLog C:/AppServ/Apache2.2/logs/ssl_request_log
"%t %h %SSL_PROTOCOLx %SSL_CIPHERx "%r" %b"
</VirtualHost>









share|improve this question















migrated from stackoverflow.com Oct 15 '12 at 6:05


This question came from our site for professional and enthusiast programmers.


















  • Don't put the SSL directives (in particular SSLEngine on) in your virtualhost on port 80. Have you checked your firewall?

    – Bruno
    Oct 12 '12 at 21:27











  • Yes I have, if I type onm console, telnet myip 443 from a remote location , it connects. Gonna comment the SSLEngine on in my virtual host port 80

    – Guille
    Oct 13 '12 at 15:02











  • What does "it doesn't work" mean? Certificate error? Can't connect? Internal server error?

    – David
    Oct 15 '12 at 6:09











  • Hi David, It Can't connect remotely, but connect locally.

    – Guille
    Oct 16 '12 at 18:42













0












0








0








I'have configured apache to use ssl certificates, when I type https://mysite.com it connects on local, but when I try outside of the server, it doesn't connect.



Here are my config and other details, I hope some one can help me.



Firewall exception for port 443 is enabled.



OS :



windows server 2008 R2



Web server:



AppServ 2.5.10(Apache 2.2.8,PHP 5.2.6,MySQL 5.0.51b,phpMyAdmin-2.10.3)



Note: I have purchased the domain at godaddy.com , when I type, www.mysite or mysite.com it works good(it have been working good since 2 years ago)



httpd.conf file



Added :

Listen 443

uncomment:

LoadModule ssl_module modules/mod_ssl.so

added:

<VirtualHost 23.23.95.84:80>
DocumentRoot C:/AppServ/www/SaresInterno
ServerName staging.soluntech.com
SSLEngine on
SSLCertificateFile C:/AppServ/Apache2.2/conf/certificate.crt
SSLCertificateKeyFile C:/AppServ/Apache2.2/conf/ssl.key
SSLCertificateChainFile C:/AppServ/Apache2.2/conf/sub.class1.server.ca.pem
SSLCACertificateFile C:/AppServ/Apache2.2/conf/ca.pem
SSLProtocol all -SSLv2
SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM
SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
CustomLog C:/AppServ/Apache2.2/logs/ssl_request_log
"%t %h %SSL_PROTOCOLx %SSL_CIPHERx "%r" %b"
</VirtualHost>

<VirtualHost _default_:443>
DocumentRoot C:/AppServ/www/SaresInterno
ServerName staging.soluntech.com
SSLEngine on
SSLCertificateFile C:/AppServ/Apache2.2/conf/certificate.crt
SSLCertificateKeyFile C:/AppServ/Apache2.2/conf/ssl.key
SSLCertificateChainFile C:/AppServ/Apache2.2/conf/sub.class1.server.ca.pem
SSLCACertificateFile C:/AppServ/Apache2.2/conf/ca.pem
SSLProtocol all -SSLv2
SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM
SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
CustomLog C:/AppServ/Apache2.2/logs/ssl_request_log
"%t %h %SSL_PROTOCOLx %SSL_CIPHERx "%r" %b"
</VirtualHost>









share|improve this question
















I'have configured apache to use ssl certificates, when I type https://mysite.com it connects on local, but when I try outside of the server, it doesn't connect.



Here are my config and other details, I hope some one can help me.



Firewall exception for port 443 is enabled.



OS :



windows server 2008 R2



Web server:



AppServ 2.5.10(Apache 2.2.8,PHP 5.2.6,MySQL 5.0.51b,phpMyAdmin-2.10.3)



Note: I have purchased the domain at godaddy.com , when I type, www.mysite or mysite.com it works good(it have been working good since 2 years ago)



httpd.conf file



Added :

Listen 443

uncomment:

LoadModule ssl_module modules/mod_ssl.so

added:

<VirtualHost 23.23.95.84:80>
DocumentRoot C:/AppServ/www/SaresInterno
ServerName staging.soluntech.com
SSLEngine on
SSLCertificateFile C:/AppServ/Apache2.2/conf/certificate.crt
SSLCertificateKeyFile C:/AppServ/Apache2.2/conf/ssl.key
SSLCertificateChainFile C:/AppServ/Apache2.2/conf/sub.class1.server.ca.pem
SSLCACertificateFile C:/AppServ/Apache2.2/conf/ca.pem
SSLProtocol all -SSLv2
SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM
SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
CustomLog C:/AppServ/Apache2.2/logs/ssl_request_log
"%t %h %SSL_PROTOCOLx %SSL_CIPHERx "%r" %b"
</VirtualHost>

<VirtualHost _default_:443>
DocumentRoot C:/AppServ/www/SaresInterno
ServerName staging.soluntech.com
SSLEngine on
SSLCertificateFile C:/AppServ/Apache2.2/conf/certificate.crt
SSLCertificateKeyFile C:/AppServ/Apache2.2/conf/ssl.key
SSLCertificateChainFile C:/AppServ/Apache2.2/conf/sub.class1.server.ca.pem
SSLCACertificateFile C:/AppServ/Apache2.2/conf/ca.pem
SSLProtocol all -SSLv2
SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM
SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
CustomLog C:/AppServ/Apache2.2/logs/ssl_request_log
"%t %h %SSL_PROTOCOLx %SSL_CIPHERx "%r" %b"
</VirtualHost>






apache-2.2 ssl






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Oct 16 '12 at 20:53







Guille

















asked Oct 12 '12 at 15:06









GuilleGuille

12




12




migrated from stackoverflow.com Oct 15 '12 at 6:05


This question came from our site for professional and enthusiast programmers.









migrated from stackoverflow.com Oct 15 '12 at 6:05


This question came from our site for professional and enthusiast programmers.














  • Don't put the SSL directives (in particular SSLEngine on) in your virtualhost on port 80. Have you checked your firewall?

    – Bruno
    Oct 12 '12 at 21:27











  • Yes I have, if I type onm console, telnet myip 443 from a remote location , it connects. Gonna comment the SSLEngine on in my virtual host port 80

    – Guille
    Oct 13 '12 at 15:02











  • What does "it doesn't work" mean? Certificate error? Can't connect? Internal server error?

    – David
    Oct 15 '12 at 6:09











  • Hi David, It Can't connect remotely, but connect locally.

    – Guille
    Oct 16 '12 at 18:42

















  • Don't put the SSL directives (in particular SSLEngine on) in your virtualhost on port 80. Have you checked your firewall?

    – Bruno
    Oct 12 '12 at 21:27











  • Yes I have, if I type onm console, telnet myip 443 from a remote location , it connects. Gonna comment the SSLEngine on in my virtual host port 80

    – Guille
    Oct 13 '12 at 15:02











  • What does "it doesn't work" mean? Certificate error? Can't connect? Internal server error?

    – David
    Oct 15 '12 at 6:09











  • Hi David, It Can't connect remotely, but connect locally.

    – Guille
    Oct 16 '12 at 18:42
















Don't put the SSL directives (in particular SSLEngine on) in your virtualhost on port 80. Have you checked your firewall?

– Bruno
Oct 12 '12 at 21:27





Don't put the SSL directives (in particular SSLEngine on) in your virtualhost on port 80. Have you checked your firewall?

– Bruno
Oct 12 '12 at 21:27













Yes I have, if I type onm console, telnet myip 443 from a remote location , it connects. Gonna comment the SSLEngine on in my virtual host port 80

– Guille
Oct 13 '12 at 15:02





Yes I have, if I type onm console, telnet myip 443 from a remote location , it connects. Gonna comment the SSLEngine on in my virtual host port 80

– Guille
Oct 13 '12 at 15:02













What does "it doesn't work" mean? Certificate error? Can't connect? Internal server error?

– David
Oct 15 '12 at 6:09





What does "it doesn't work" mean? Certificate error? Can't connect? Internal server error?

– David
Oct 15 '12 at 6:09













Hi David, It Can't connect remotely, but connect locally.

– Guille
Oct 16 '12 at 18:42





Hi David, It Can't connect remotely, but connect locally.

– Guille
Oct 16 '12 at 18:42










1 Answer
1






active

oldest

votes


















0














for test re-configure apache to serve content on port 443 instead of port 80 and try to hit it from outside, if you still unable to do so then it's not apache it's most likely firewall (yes i know you said its in the list, but maybe there is another firewall or something else is blocking request)






share|improve this answer























  • Hi Alexus, thanks for your time, This server is located on Amazon EC2, it is virtual, and I have enabled port 443, in Amazon EC2 Console, and also in windows 2008, but no luck, the other ports, like 80, 3306 for my sql, connect succefully , and I always do the same steps. 1. Enable ports on Ec2 Cosole. 2. Enable ports on windows 2008 firewall. I don't know if is some windows firewall issue with windows firewall, microsoft says that install latest updates, but still not connect.

    – Guille
    Oct 17 '12 at 16:19












  • my guess since you're able to access https (port 443) locally then it's most likely not SSL at fault, but rather Windows/Amazon where the problem is, maybe you enabled port 443 on Amazon Console for one policy yet using another policy for that VM (you have to verify that) same goes for Windows firewall, maybe you have another peace of software that is blocking that port.

    – alexus
    Oct 17 '12 at 16:40











Your Answer








StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "2"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f438365%2fhttps-only-connects-in-local-using-apache%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














for test re-configure apache to serve content on port 443 instead of port 80 and try to hit it from outside, if you still unable to do so then it's not apache it's most likely firewall (yes i know you said its in the list, but maybe there is another firewall or something else is blocking request)






share|improve this answer























  • Hi Alexus, thanks for your time, This server is located on Amazon EC2, it is virtual, and I have enabled port 443, in Amazon EC2 Console, and also in windows 2008, but no luck, the other ports, like 80, 3306 for my sql, connect succefully , and I always do the same steps. 1. Enable ports on Ec2 Cosole. 2. Enable ports on windows 2008 firewall. I don't know if is some windows firewall issue with windows firewall, microsoft says that install latest updates, but still not connect.

    – Guille
    Oct 17 '12 at 16:19












  • my guess since you're able to access https (port 443) locally then it's most likely not SSL at fault, but rather Windows/Amazon where the problem is, maybe you enabled port 443 on Amazon Console for one policy yet using another policy for that VM (you have to verify that) same goes for Windows firewall, maybe you have another peace of software that is blocking that port.

    – alexus
    Oct 17 '12 at 16:40















0














for test re-configure apache to serve content on port 443 instead of port 80 and try to hit it from outside, if you still unable to do so then it's not apache it's most likely firewall (yes i know you said its in the list, but maybe there is another firewall or something else is blocking request)






share|improve this answer























  • Hi Alexus, thanks for your time, This server is located on Amazon EC2, it is virtual, and I have enabled port 443, in Amazon EC2 Console, and also in windows 2008, but no luck, the other ports, like 80, 3306 for my sql, connect succefully , and I always do the same steps. 1. Enable ports on Ec2 Cosole. 2. Enable ports on windows 2008 firewall. I don't know if is some windows firewall issue with windows firewall, microsoft says that install latest updates, but still not connect.

    – Guille
    Oct 17 '12 at 16:19












  • my guess since you're able to access https (port 443) locally then it's most likely not SSL at fault, but rather Windows/Amazon where the problem is, maybe you enabled port 443 on Amazon Console for one policy yet using another policy for that VM (you have to verify that) same goes for Windows firewall, maybe you have another peace of software that is blocking that port.

    – alexus
    Oct 17 '12 at 16:40













0












0








0







for test re-configure apache to serve content on port 443 instead of port 80 and try to hit it from outside, if you still unable to do so then it's not apache it's most likely firewall (yes i know you said its in the list, but maybe there is another firewall or something else is blocking request)






share|improve this answer













for test re-configure apache to serve content on port 443 instead of port 80 and try to hit it from outside, if you still unable to do so then it's not apache it's most likely firewall (yes i know you said its in the list, but maybe there is another firewall or something else is blocking request)







share|improve this answer












share|improve this answer



share|improve this answer










answered Oct 16 '12 at 20:59









alexusalexus

8,1022085149




8,1022085149












  • Hi Alexus, thanks for your time, This server is located on Amazon EC2, it is virtual, and I have enabled port 443, in Amazon EC2 Console, and also in windows 2008, but no luck, the other ports, like 80, 3306 for my sql, connect succefully , and I always do the same steps. 1. Enable ports on Ec2 Cosole. 2. Enable ports on windows 2008 firewall. I don't know if is some windows firewall issue with windows firewall, microsoft says that install latest updates, but still not connect.

    – Guille
    Oct 17 '12 at 16:19












  • my guess since you're able to access https (port 443) locally then it's most likely not SSL at fault, but rather Windows/Amazon where the problem is, maybe you enabled port 443 on Amazon Console for one policy yet using another policy for that VM (you have to verify that) same goes for Windows firewall, maybe you have another peace of software that is blocking that port.

    – alexus
    Oct 17 '12 at 16:40

















  • Hi Alexus, thanks for your time, This server is located on Amazon EC2, it is virtual, and I have enabled port 443, in Amazon EC2 Console, and also in windows 2008, but no luck, the other ports, like 80, 3306 for my sql, connect succefully , and I always do the same steps. 1. Enable ports on Ec2 Cosole. 2. Enable ports on windows 2008 firewall. I don't know if is some windows firewall issue with windows firewall, microsoft says that install latest updates, but still not connect.

    – Guille
    Oct 17 '12 at 16:19












  • my guess since you're able to access https (port 443) locally then it's most likely not SSL at fault, but rather Windows/Amazon where the problem is, maybe you enabled port 443 on Amazon Console for one policy yet using another policy for that VM (you have to verify that) same goes for Windows firewall, maybe you have another peace of software that is blocking that port.

    – alexus
    Oct 17 '12 at 16:40
















Hi Alexus, thanks for your time, This server is located on Amazon EC2, it is virtual, and I have enabled port 443, in Amazon EC2 Console, and also in windows 2008, but no luck, the other ports, like 80, 3306 for my sql, connect succefully , and I always do the same steps. 1. Enable ports on Ec2 Cosole. 2. Enable ports on windows 2008 firewall. I don't know if is some windows firewall issue with windows firewall, microsoft says that install latest updates, but still not connect.

– Guille
Oct 17 '12 at 16:19






Hi Alexus, thanks for your time, This server is located on Amazon EC2, it is virtual, and I have enabled port 443, in Amazon EC2 Console, and also in windows 2008, but no luck, the other ports, like 80, 3306 for my sql, connect succefully , and I always do the same steps. 1. Enable ports on Ec2 Cosole. 2. Enable ports on windows 2008 firewall. I don't know if is some windows firewall issue with windows firewall, microsoft says that install latest updates, but still not connect.

– Guille
Oct 17 '12 at 16:19














my guess since you're able to access https (port 443) locally then it's most likely not SSL at fault, but rather Windows/Amazon where the problem is, maybe you enabled port 443 on Amazon Console for one policy yet using another policy for that VM (you have to verify that) same goes for Windows firewall, maybe you have another peace of software that is blocking that port.

– alexus
Oct 17 '12 at 16:40





my guess since you're able to access https (port 443) locally then it's most likely not SSL at fault, but rather Windows/Amazon where the problem is, maybe you enabled port 443 on Amazon Console for one policy yet using another policy for that VM (you have to verify that) same goes for Windows firewall, maybe you have another peace of software that is blocking that port.

– alexus
Oct 17 '12 at 16:40

















draft saved

draft discarded
















































Thanks for contributing an answer to Server Fault!


  • 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.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f438365%2fhttps-only-connects-in-local-using-apache%23new-answer', 'question_page');

);

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







Popular posts from this blog

How to write a 12-bar blues melodyI-IV-V blues progressionHow to play the bridges in a standard blues progressionHow does Gdim7 fit in C# minor?question on a certain chord progressionMusicology of Melody12 bar blues, spread rhythm: alternative to 6th chord to avoid finger stretchChord progressions/ Root key/ MelodiesHow to put chords (POP-EDM) under a given lead vocal melody (starting from a good knowledge in music theory)Are there “rules” for improvising with the minor pentatonic scale over 12-bar shuffle?Confusion about blues scale and chords

What if the end-user didn't have the required library?What is setup.py?What is a clean, pythonic way to have multiple constructors in Python?What does Ruby have that Python doesn't, and vice versa?What is the reason for having '//' in Python?How do I create a namespace package in Python?How to package shared objects that python modules depend on?setuptools vs. distutils: why is distutils still a thing?Navigation in Windows 10 vs code not going to virtualenv library when the same library is installed at user levelPython create package for local usePackaging a project that uses multiple python versionsWhy is permission denied on pip install except for when “--user” is included at end of command?

Esgonzo ibérico Índice Descrición Distribución Hábitat Ameazas Notas Véxase tamén "Acerca dos nomes dos anfibios e réptiles galegos""Chalcides bedriagai"Chalcides bedriagai en Carrascal, L. M. Salvador, A. (Eds). Enciclopedia virtual de los vertebrados españoles. Museo Nacional de Ciencias Naturales, Madrid. España.Fotos