<Directory /path/to/website.com/web>
(...)
Order allow,deny
Allow from all
</Directory>
(...)
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
(中略) | |
"file_exclude_patterns": | |
[ | |
"*.exe", | |
"*.psd", | |
".DS_Store", | |
"*.sublime-workspace", | |
"*.sublime-project", | |
".bowerrc", | |
".editorconfig", |
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
{ | |
"files": | |
{ | |
"Modernizr.js": "http://modernizr.com/downloads/modernizr-latest.js", | |
"Normalize.css 3.x": "https://raw.githubusercontent.com/necolas/normalize.css/master/normalize.css", | |
"editorconfig": "file:///Users/username/modules/editorconfig", | |
"gitignore": "file:///Users/username/modules/gitignore" | |
}, | |
"packages": | |
{ |
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
# Change YOUR_TOKEN to your prerender token and uncomment that line if you want to cache urls and view crawl stats | |
# Change http://example.com (at the end of the last RewriteRule) to your website url | |
<IfModule mod_headers.c> | |
#RequestHeader set X-Prerender-Token "YOUR_TOKEN" | |
</IfModule> | |
<IfModule mod_rewrite.c> | |
RewriteEngine On |
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
<FilesMatch "^(wp-(config|settings).*\.php|readme\.html|license\.txt)"> | |
Require all denied | |
</FilesMatch> |
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
inspect_addr: 0.0.0.0:4040 |
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
config.vm.synced_folder ".", "/vagrant", id: "vagrant-root", owner: "vagrant", group: "www-data", mount_options: ["dmode=775,fmode=664"] |
$ cd /var/db/receipts
$ ls -l | grep example
-rw-r--r--@ 1 root wheel 55217 Oct 2 17:49 com.example.bom
-rw-r--r--@ 1 root wheel 259 Oct 2 17:49 com.example.plist
$ lsbom com.example.bom | pbcopy
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
{ | |
"name": "ss", | |
"root": "./", | |
"routes": { | |
"/": "index.html" | |
}, | |
"clean_urls": false, | |
"error_page": "error.html", | |
"headers": { | |
"/*": { |
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
Header set Access-Control-Allow-Origin "*" | |
Header set Access-Control-Allow-Headers "X-Requested-With" |