Enable services by default
Change-Id: I10297193d211b59a2e8c8374057a67dc2d203b5a
diff --git a/devops_portal/files/nginx.conf b/devops_portal/files/nginx.conf
index 83073fa..ee80d87 100644
--- a/devops_portal/files/nginx.conf
+++ b/devops_portal/files/nginx.conf
@@ -45,7 +45,7 @@
{%- for service_name in services %}
{%- if config.service[service_name] is defined %}
{%- set service = config.service[service_name] %}
-{%- if service.enabled|default(False) and service.configure_proxy|default(False) %}
+{%- if service.enabled|default(True) and service.configure_proxy|default(False) %}
location /api/{{ service_name }} {
proxy_pass {{ service_url(service.endpoint) }};