~sajoupa/charms/trusty/wordpress-services/wordpress-services-merge-with-is-charms

« back to all changes in this revision

Viewing changes to templates/wp-info.php.j2

  • Committer: Laurent Sesques
  • Date: 2016-04-05 14:00:08 UTC
  • mfrom: (108.2.15 wordpress-services)
  • Revision ID: laurent.sesques@canonical.com-20160405140008-jhnl2amuruoilm1d
[sajoupa] merge with lp:~canonical-sysadmins/canonical-is-charms/wordpress-services

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
 
52
52
$table_prefix  = 'wp_';
53
53
 
 
54
{% if outbound_http_proxy.hostname and outbound_http_proxy.port %}
 
55
define('WP_PROXY_HOST', '{{outbound_http_proxy.hostname}}');
 
56
define('WP_PROXY_PORT', '{{outbound_http_proxy.port}}');
 
57
define('WP_PROXY_BYPASS_HOSTS', 'localhost');
 
58
{% endif %}
 
59
 
 
60
{% if outbound_http_proxy.username %}
 
61
define('WP_PROXY_USERNAME', '{{outbound_http_proxy.username}}');
 
62
{% endif %}
 
63
 
 
64
{% if outbound_http_proxy.username and outbound_http_proxy.password %}
 
65
define('WP_PROXY_PASSWORD', '{{outbound_http_proxy.password}}');
 
66
{% endif %}