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
| find . -type f | xargs -I {} bash -c "iconv -f utf-8 -t utf-16 {} &>/dev/null || echo {}" > utf8_fail |
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
| server { | |
| include /etc/nginx/mime.types; | |
| default_type application/octet-stream; | |
| listen 80; | |
| listen 443 ssl; | |
| server_name {example.com}; | |
| root /var/www/{path/to/project}; | |
| client_max_body_size 64M; | |
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
| #!/bin/bash | |
| VHOSTS_CONTAINER_FILE="/etc/apache2/sites-available/vhosts.conf" | |
| HOSTS_FILE="/etc/hosts" | |
| CREATE_SYMLINK="N" | |
| HOME_DIR="" | |
| while [[ $# -gt 1 ]] | |
| do | |
| key="$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
| #!/bin/bash | |
| PHP_V="$2"; | |
| if [ $PHP_V == "" ]; then | |
| PHP_V=1 | |
| fi | |
| __done(){ | |
| echo -e "Done\n"; | |
| } |
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
| <!-- Apple Touch Icons --> | |
| <link rel="apple-touch-icon" href="/images/apple-touch-icon-60x60.png" /> | |
| <link rel="apple-touch-icon" sizes="76x76" href="/images/apple-touch-icon-76x76.png"> | |
| <link rel="apple-touch-icon" sizes="120x120" href="/images/apple-touch-icon-120x120.png"> | |
| <link rel="apple-touch-icon" sizes="152x152" href="/images/apple-touch-icon-152x152.png"> | |
| <!-- End of Apple Touch Icons --> |
NewerOlder