Compare commits
3 Commits
58b92b4628
...
88e9ee5d33
Author | SHA1 | Date | |
---|---|---|---|
88e9ee5d33 | |||
2380008894 | |||
1d093f3dfb |
@ -5,6 +5,9 @@ const blackHole = function (req, res) {};
|
|||||||
router.all('(/*)?/wp-admin/', blackHole);
|
router.all('(/*)?/wp-admin/', blackHole);
|
||||||
router.all(/.*\.php$/, blackHole);
|
router.all(/.*\.php$/, blackHole);
|
||||||
router.all(/.*\.aspx$/, blackHole);
|
router.all(/.*\.aspx$/, blackHole);
|
||||||
|
router.all(/.*\.gz$/, blackHole);
|
||||||
|
router.all(/.*\.bz2$/, blackHole);
|
||||||
|
router.all(/.*\.tar$/, blackHole);
|
||||||
router.all('(/*)?/wp-includes/(*)?', blackHole);
|
router.all('(/*)?/wp-includes/(*)?', blackHole);
|
||||||
router.all('/.git/*?', blackHole);
|
router.all('/.git/*?', blackHole);
|
||||||
router.all('/.env', blackHole);
|
router.all('/.env', blackHole);
|
||||||
@ -14,6 +17,9 @@ router.all('/admin(/.*)?', blackHole)
|
|||||||
router.all('/wordpress/', blackHole);
|
router.all('/wordpress/', blackHole);
|
||||||
router.all('/wp(2)?/', blackHole);
|
router.all('/wp(2)?/', blackHole);
|
||||||
router.all('/backup/', blackHole);
|
router.all('/backup/', blackHole);
|
||||||
|
router.all('/db-backup/', blackHole);
|
||||||
|
router.all('/db_backup/', blackHole);
|
||||||
|
router.all('/dbbackup/', blackHole);
|
||||||
router.all('/bak/', blackHole);
|
router.all('/bak/', blackHole);
|
||||||
router.all(/.*\/mail\/config-.+\.xml/, blackHole);
|
router.all(/.*\/mail\/config-.+\.xml/, blackHole);
|
||||||
router.post('*', blackHole);
|
router.post('*', blackHole);
|
||||||
|
@ -6,7 +6,7 @@ tags: nodejs node npm javascript truncatise ghost
|
|||||||
summary: "Today I finally got around to modifying my <a href='https://ghost.org/' target='_blank'>Ghost</a> blog to make use of my new Node Module <a href='//blog.marcusnoble.co.uk/publishing-my-first-npm-module/'>Truncatise</a>.<br/><br/>This didn't go as smoothly as I hoped."
|
summary: "Today I finally got around to modifying my <a href='https://ghost.org/' target='_blank'>Ghost</a> blog to make use of my new Node Module <a href='//blog.marcusnoble.co.uk/publishing-my-first-npm-module/'>Truncatise</a>.<br/><br/>This didn't go as smoothly as I hoped."
|
||||||
---
|
---
|
||||||
|
|
||||||
Today I finally got around to modifying my [Ghost](https://ghost.org/) blog to make use of my new Node Module [Truncatise](/29-10-2013-publishing-my-first-npm-module/).
|
Today I finally got around to modifying my [Ghost](https://ghost.org/) blog to make use of my new Node Module [Truncatise](/2013-10-29-publishing-my-first-npm-module/).
|
||||||
|
|
||||||
This didn't go as smoothly as I hoped.
|
This didn't go as smoothly as I hoped.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user