Skip to content

Commit

Permalink
Fixes geerlingguy#251: Make Adminer config work better across webserv…
Browse files Browse the repository at this point in the history
…ers.
  • Loading branch information
geerlingguy authored and ravbaba committed Sep 23, 2015
1 parent cce11cb commit c200607
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 @@ -83,6 +83,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 @@ -103,6 +106,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 @@ -194,7 +201,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 c200607

Please sign in to comment.