nginx + ssl configuration for XenForo [Deleted]

Puntocom

Well-known member
Puntocom submitted a new resource:

nginx + ssl configuration for XenForo - Configuration files to run XenForo with nginx + ssl

This is my configuration to get XenForo running under nginx with SSL.

Easy steps to get the SSL certificate running here: http://blog.wensheng.org/2012/03/using-namecheap-ssl-with-nginx.html

/etc/nginx/sites-enabled/example.com

Code:
server {
  listen  80;
  server_name  example.com *.example.com;
  rewrite  ^ https://$server_name$request_uri? permanent;
  server_tokens off;
}
server {
  listen 443;
  server_name example.com *.example.com;
  server_tokens off;
  ssl on;...

Read more about this resource...
 
Top Bottom