<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html;charset=KOI8-R" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Igor Sysoev wrote:
<blockquote cite="mid:20080815192913.GC77650@rambler-co.ru" type="cite">
<pre wrap="">On Sat, Aug 16, 2008 at 02:18:36AM +0700, Chris Savery wrote:
</pre>
<blockquote type="cite">
<pre wrap="">Thank you very much for that. It did the trick and I was able to build
easily then.
My next problem seems to be that SSL doesn't want to work. Here is my
conf that I'm testing with - I have another server on port 443 so I'm
testing on 1443 here. But I cannot connect - just says connecting and
then never seems to get it. Nginx is werving fine on non-ssl though. No
messages in error log but at first it said cannot bind as I mistakenly
tried using port 443. Then I changed that.
If you see anything obvious here please let me know as I plug away on it.
Chris :)
server {
listen 74.223.185.26:1443;
server_name mydomain.com <a class="moz-txt-link-abbreviated" href="http://www.mydomain.com">www.mydomain.com</a> n1.mydomain.com;
root /var/www/mydomain/adminX;
ssl on;
ssl_certificate /var/local/ssl/certs/wild.mydomain.crt;
ssl_certificate_key /var/local/ssl/private/wild.mydomain.key;
ssl_session_timeout 5m;
ssl_protocols SSLv2 SSLv3 TLSv1;
ssl_ciphers
ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;
ssl_prefer_server_ciphers on;
location ~ \.php$ { fastcgi_pass 127.0.0.1:9000; include
fastcgi_params; }
}
</pre>
</blockquote>
<pre wrap=""><!---->
Try "telnet 74.223.185.26 1443", if it says only
Trying 74.223.185.26...
and does not say then
Connected to [...]
then you have some network problems: firewalls or so.
</pre>
</blockquote>
<font face="Helvetica, Arial, sans-serif">Yes. Thank You. Sorry to
bother you. I'm used to testing at home where I'm inside the firewall
that I didn't even think about that. It's my firewall at the data
center. Simply escaped me.<br>
Chris :)<br>
</font>
</body>
</html>