nginx and ssl

Hi,

I am trying out nginx instead of apache to see if I can get my simple wordpress site to load a little faster. I have got the wordpress site to load, however when I go to any admin section (which is under ssl), I get a blank screen. Nothing seems to be written to my log so I am at a loss as to why I cannot access the secure parts of my blog.

This is my ssl section of the nginx conf

server {
listen 443;
server_name _*;

ssl on;
ssl_certificate /etc/apache2/ssl/www.site.net.crt;
ssl_certificate_key /etc/apache2/ssl/www.site.net.key;
access_log /home/user/public_html/dsite/log/n_ssl_access.log;
error_log /home/user/public_html/dsite/log/n_ssl_error.log;

location / {
# proxy_set_header X-FORWARDED_PROTO https;
root /home/user/public_html/site/public/;
index index.html index.htm index.php;

}
}


If anyone has any suggestions - I would be most grateful




More Stories in Slicehost Forum

    Other Feedables