bifrost/playbooks/roles/bifrost-keystone-install/templates/nginx.conf.j2
Julia Kreger 487de043ea Fix keystone config templates
The ansible_managed variable was resulting in
text being put into the keystone config file that
caused keystone to fail. Commenting out the entry
to allow the test script to execute successfuly.

Change-Id: Ie8ff1f9b8354e4d1411a8714df6a73b6adfd9cd5
2016-12-05 21:22:54 +00:00

53 lines
824 B
Django/Jinja

# {{ ansible_managed }}
user {{ nginx_user }};
worker_processes 2;
pid /run/nginx.pid;
events {
worker_connections 768;
# multi_accept on;
}
http {
##
# Basic Settings
##
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
# server_tokens off;
# server_names_hash_bucket_size 64;
# server_name_in_redirect off;
include /etc/nginx/mime.types;
default_type application/octet-stream;
##
# Logging Settings
##
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
##
# Gzip Settings
##
gzip on;
server {
listen {{ file_url_port }};
server_name {{ ansible_hostname }};
root {{ http_boot_folder }};
location {{ http_boot_folder }}/ {
alias {{ http_boot_folder }}/;
}
}
include /etc/nginx/conf.d/bifrost*.conf;
}