You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-15Lines changed: 2 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,6 @@ Drupal VM installs the following on an Ubuntu 18.04 (by default) linux VM:
34
34
- Blackfire, XHProf, or Tideways for profiling your code
35
35
- XDebug, for debugging your code
36
36
- Adminer, for accessing databases directly
37
-
- Pimp my Log, for easy viewing of log files
38
37
- MailHog, for catching and debugging email
39
38
40
39
It should take 5-10 minutes to build or rebuild the VM from scratch on a decent broadband connection.
@@ -109,7 +108,7 @@ Note: *By default Drupal VM is configured to use `192.168.88.88` as its IP, if y
109
108
110
109
## Extra software/utilities
111
110
112
-
By default, this VM includes the extras listed in the `config.yml` option `installed_extras`:
111
+
By default, this VM includes the extras listed in the `config.yml` option `installed_extras`, for example:
113
112
114
113
installed_extras:
115
114
- adminer
@@ -119,19 +118,7 @@ By default, this VM includes the extras listed in the `config.yml` option `insta
119
118
# - elasticsearch
120
119
# - java
121
120
- mailhog
122
-
# - memcached
123
-
# - newrelic
124
-
# - nodejs
125
-
- pimpmylog
126
-
# - redis
127
-
# - ruby
128
-
# - selenium
129
-
# - solr
130
-
# - tideways
131
-
# - upload-progress
132
-
- varnish
133
-
# - xdebug
134
-
# - xhprof
121
+
[...]
135
122
136
123
If you don't want or need one or more of these extras, just delete them or comment them from the list. This is helpful if you want to reduce PHP memory usage or otherwise conserve system resources.
Copy file name to clipboardExpand all lines: docs/deployment/local-codebase.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ By default the domain of your site will be `drupalvm.test` but you can change it
45
45
drupal_domain: "local.my-drupal-site.com"
46
46
```
47
47
48
-
If you prefer using your domain as the root of all extra packages installed, ie. `adminer`, `xhprof` and `pimpmylog`, set it as the value of `vagrant_hostname` instead.
48
+
If you prefer using your domain as the root of all extra packages installed, ie. `adminer`and `xhprof`, set it as the value of `vagrant_hostname` instead.
Copy file name to clipboardExpand all lines: docs/other/production.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -102,7 +102,7 @@ Your DigitalOcean Droplet is booted and ready to have Drupal VM installed on it.
102
102
103
103
Copy [`examples/prod/prod.config.yml`](https://github.com/geerlingguy/drupal-vm/blob/4.9.1/examples/prod/prod.config.yml) to `config.yml`, and by looking at `default.config.yml` add any other overrides you'd like. Whatever variables you have set in `config.yml` will override the defaults set by `default.config.yml`.
104
104
105
-
The changes outlined in the [example `prod.config.yml`](https://github.com/geerlingguy/drupal-vm/blob/4.9.1/examples/prod/prod.config.yml) disable development-environment tools (like Pimp My Log and Adminer) and add extra security hardening configuration (via the `extra_security_enabled` variable).
105
+
The changes outlined in the [example `prod.config.yml`](https://github.com/geerlingguy/drupal-vm/blob/4.9.1/examples/prod/prod.config.yml) disable development-environment tools (like Adminer) and add extra security hardening configuration (via the `extra_security_enabled` variable).
106
106
107
107
You now have Drupal VM configured for production by default. This is the recommended and safest way, so that you can't accidentally provision a production server with development tools. If desired you can also use the [environment variable `DRUPALVM_ENV`](#production-specific-overrides) to load an additional `<ENV>.config.yml` with production specific overrides. In most cases this is not needed though.
0 commit comments