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
| sub vcl_deliver { | |
| if (obj.hits > 0) { | |
| set resp.http.X-Varnish-Cache = "HIT" | |
| } | |
| else { | |
| set resp.http.X-Varnish-Cache = "MISS" | |
| } | |
| } |
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/magento setup:install \ | |
| --backend-frontname "admin" \ | |
| --session-save "files" \ | |
| --db-host "127.0.0.1" \ | |
| --db-name "magento2_magento_local" \ | |
| --db-user "root" \ | |
| --db-engine "innodb" \ | |
| --db-password "password" \ | |
| --skip-db-validation \ | |
| --base-url "http://magento2.dev/" \ |
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
| # | |
| # Vagrant Proxy | |
| # | |
| # Make sure the following modules are enabled | |
| #LoadModule proxy_module modules/mod_proxy.so | |
| #LoadModule proxy_connect_module modules/mod_proxy_connect.so | |
| #LoadModule proxy_http_module modules/mod_proxy_http.so |
NewerOlder