Created
May 31, 2014 13:24
-
-
Save indapublic/d33b2d5ee270d0044698 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 306; | |
server_name localhost; | |
root /usr/local/share/phpmyadmin; | |
error_log /var/log/nginx/phpmyadmin.error.log; | |
access_log /var/log/nginx/phpmyadmin.access.log main; | |
ssl on; | |
ssl_certificate ssl/phpmyadmin.crt; | |
ssl_certificate_key ssl/phpmyadmin.key; | |
ssl_session_timeout 5m; | |
ssl_protocols SSLv2 SSLv3 TLSv1; | |
ssl_ciphers HIGH:!aNULL:!MD5; | |
ssl_prefer_server_ciphers on; | |
include /usr/local/etc/nginx/conf.d/php-fpm; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment