Add brotli
This commit is contained in:
parent
6449902da2
commit
963311baa3
1 changed files with 6 additions and 3 deletions
9
Makefile
9
Makefile
|
@ -5,17 +5,20 @@ compile: clean
|
||||||
@bundle exec jekyll build
|
@bundle exec jekyll build
|
||||||
@echo "Done."
|
@echo "Done."
|
||||||
|
|
||||||
compress:
|
compress: compile
|
||||||
@echo "=== Compressing generated files"
|
@echo "=== Compressing generated files"
|
||||||
@find ./_site -type f | xargs zopfli --gzip --i30
|
@find ./_site -type f | xargs zopfli --gzip --i30
|
||||||
|
@find ./_site -type f ! -name "*.gz" | xargs -I {} bro --quality 11 --input {} --output {}.br
|
||||||
|
@find ./_site -type f -name "*.br" | xargs chmod 644
|
||||||
@echo "Done."
|
@echo "Done."
|
||||||
|
|
||||||
upload:
|
upload:
|
||||||
@echo "=== Syncing files"
|
@echo "=== Syncing files"
|
||||||
@rsync -avz --no-o --no-g -e ssh --chmod=og=r -p --delete _site/ webserver.kempkens.io:/var/www/main
|
@rsync -avz --no-o --no-g -e ssh --chmod=og=r -p --delete _site/ kempkens.io:/iocage/jails/506fd9f8-15c0-11e5-adf5-477a0b920463/root/var/www/main
|
||||||
@echo "Done."
|
@echo "Done."
|
||||||
@echo "=== Changing permissions"
|
@echo "=== Changing permissions"
|
||||||
@ssh webserver.kempkens.io chown -R www:www /var/www/main
|
@ssh kempkens.io chmod 755 /iocage/jails/506fd9f8-15c0-11e5-adf5-477a0b920463/root/var/www/main
|
||||||
|
@ssh kempkens.io find /iocage/jails/506fd9f8-15c0-11e5-adf5-477a0b920463/root/var/www/main -type d -exec chmod 755 {} +
|
||||||
@echo "Done."
|
@echo "Done."
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
|
|
Loading…
Reference in a new issue