Merge pull request #4686 from mitchellh/sethvargo/vb_ssl
website: Use https://www.virtualbox.org for all VirtualBox links
This commit is contained in:
commit
976706e7f9
|
@ -59,7 +59,13 @@ set :markdown, fenced_code_blocks: true
|
||||||
configure :build do
|
configure :build do
|
||||||
activate :asset_hash
|
activate :asset_hash
|
||||||
activate :minify_css
|
activate :minify_css
|
||||||
activate :minify_html
|
activate :minify_html do |html|
|
||||||
|
html.remove_quotes = false
|
||||||
|
html.remove_script_attributes = false
|
||||||
|
html.remove_multi_spaces = false
|
||||||
|
html.remove_http_protocol = false
|
||||||
|
html.remove_https_protocol = false
|
||||||
|
end
|
||||||
activate :minify_javascript
|
activate :minify_javascript
|
||||||
|
|
||||||
# Enable cache buster
|
# Enable cache buster
|
||||||
|
|
|
@ -39,7 +39,7 @@ $ vagrant up
|
||||||
```
|
```
|
||||||
|
|
||||||
After running the above two commands, you'll have a fully running
|
After running the above two commands, you'll have a fully running
|
||||||
virtual machine in [VirtualBox](http://virtualbox.org) running
|
virtual machine in [VirtualBox](https://www.virtualbox.org) running
|
||||||
Ubuntu 12.04 LTS 32-bit. You can SSH into this machine with
|
Ubuntu 12.04 LTS 32-bit. You can SSH into this machine with
|
||||||
`vagrant ssh`, and when you're done playing around, you can remove
|
`vagrant ssh`, and when you're done playing around, you can remove
|
||||||
all traces of it with `vagrant destroy`.
|
all traces of it with `vagrant destroy`.
|
||||||
|
|
|
@ -33,6 +33,12 @@ end
|
||||||
configure :build do
|
configure :build do
|
||||||
activate :asset_hash
|
activate :asset_hash
|
||||||
activate :minify_css
|
activate :minify_css
|
||||||
activate :minify_html
|
activate :minify_html do |html|
|
||||||
|
html.remove_quotes = false
|
||||||
|
html.remove_script_attributes = false
|
||||||
|
html.remove_multi_spaces = false
|
||||||
|
html.remove_http_protocol = false
|
||||||
|
html.remove_https_protocol = false
|
||||||
|
end
|
||||||
activate :minify_javascript
|
activate :minify_javascript
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue