Skip to content
This repository has been archived by the owner on Feb 13, 2023. It is now read-only.

Commit

Permalink
Fixes #251: Make Adminer config work better across webservers.
Browse files Browse the repository at this point in the history
  • Loading branch information
geerlingguy committed Sep 22, 2015
1 parent 66bc74e commit 38df315
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion example.config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,9 @@ apache_vhosts:
- servername: "{{ drupal_domain }}"
documentroot: "{{ drupal_core_path }}"

- servername: "adminer.drupalvm.dev"
documentroot: "/opt/adminer"

- servername: "xhprof.drupalvm.dev"
documentroot: "/usr/share/php/xhprof_html"

Expand All @@ -99,6 +102,10 @@ nginx_hosts:
root: "{{ drupal_core_path }}"
is_php: true

- server_name: "adminer.drupalvm.dev"
root: "/opt/adminer"
is_php: true

- server_name: "xhprof.drupalvm.dev"
root: "/usr/share/php/xhprof_html"
is_php: true
Expand Down Expand Up @@ -190,7 +197,7 @@ mysql_root_password: root
mysql_slow_query_log_enabled: true
mysql_slow_query_time: 2
mysql_wait_timeout: 300
adminer_add_apache_config: true
adminer_install_filename: index.php

# Varnish Configuration.
varnish_listen_port: "81"
Expand Down

0 comments on commit 38df315

Please sign in to comment.