This file contains hidden or 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
| (19|20)\d\d([- /.])(0[1-9]|1[012])\2(0[1-9]|[12][0-9]|3[01]) |
This file contains hidden or 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
| extension = apc.so | |
| apc.shm_segments = 1 | |
| apc.shm_size = 256 | |
| apc.optimization = 0 | |
| apc.num_files_hint = 2048 | |
| apc.ttl = 3600 | |
| apc.user_ttl = 3600 | |
| apc.enable_cli = 1 | |
| apc.max_file_size = 1M | |
| apc.rfc1867 = 1 |
This file contains hidden or 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
| location /foo/bar { | |
| auth_basic "Auth name"; | |
| auth_basic_user_file /etc/phpmyadmin/htpasswd; | |
| try_files $uri/ $uri/index.php; | |
| } | |
| location ~ ^/foo/bar(.+\.php)$ { | |
| alias /usr/share/phpmyadmin$1; | |
| fastcgi_pass unix:/var/run/php5-fpm/www-data.sock; | |
| fastcgi_index index.php; | |
| fastcgi_param SCRIPT_FILENAME /usr/share/phpmyadmin$1; |
This file contains hidden or 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
| export GIT_PS1_SHOWDIRTYSTATE=true | |
| # colored prompt | |
| USER=`whoami` | |
| if [ $LOGNAME = $USER ] ; then | |
| USERCOLOR=32 # green | |
| else | |
| USERCOLOR=33 # yellow | |
| fi | |
| if [ $USER = 'root' ] ; then | |
| USERCOLOR=31 # red |
NewerOlder