Advertisement
Guest User

Untitled

a guest
Apr 18th, 2011
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. server {
  2. listen 17942 default ssl;
  3. server_name 12.34.56.78;
  4. root /var/pma;
  5. index index.php;
  6.  
  7. keepalive_timeout 70;
  8. ssl_session_timeout 5m;
  9. ssl_certificate_key /etc/nginx/ssl/phpmyadmin/phpmyadmin.key;
  10. ssl_certificate /etc/nginx/ssl/phpmyadmin/phpmyadmin.crt;
  11.  
  12. # use fastcgi for all php files
  13. location ~ \.php$
  14. {
  15. fastcgi_pass 127.0.0.1:9000;
  16. fastcgi_index index.php;
  17. fastcgi_param HTTPS on;
  18. include fastcgi_params;
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement