aboutsummaryrefslogtreecommitdiffstats
path: root/devops/nginx/default.conf
diff options
context:
space:
mode:
authorAdrian Batos-Parac <adrian.batos-parac@amdocs.com>2018-02-22 15:50:01 -0500
committerAdrian Batos-Parac <adrian.batos-parac@amdocs.com>2018-02-22 15:50:01 -0500
commitd6a36b1577b3220f7822ae655d57fa6a1dded5a6 (patch)
tree0adf5d8b2f65b0fc6129a42c3fd0309bff9d8700 /devops/nginx/default.conf
parent030236e7268ca08aeae13acec04e3efc2687b2e6 (diff)
Initial Commit of Gallifrey
Commit the initial set of code for the Gallifrey offering to ONAP Change-Id: Id1d3bd2bda5ab530682b6646f2cb0414baf671a5 Issue-ID: AAI-797 Signed-off-by: abatos <adrian.batos-parac@amdocs.com>
Diffstat (limited to 'devops/nginx/default.conf')
-rw-r--r--devops/nginx/default.conf22
1 files changed, 22 insertions, 0 deletions
diff --git a/devops/nginx/default.conf b/devops/nginx/default.conf
new file mode 100644
index 0000000..ea9980f
--- /dev/null
+++ b/devops/nginx/default.conf
@@ -0,0 +1,22 @@
+server {
+ # Listen on 80 and 443
+ listen 80;
+ listen 443 ssl;
+ # Self-signed certificate.
+ ssl_certificate /etc/ssl/certs/ssl-cert-snakeoil.pem;
+ ssl_certificate_key /etc/ssl/private/ssl-cert-snakeoil.key;
+
+ # Redirect all non-SSL traffic to SSL.
+ if ($ssl_protocol = "") {
+ rewrite ^ https://$host$request_uri? permanent;
+ }
+
+ # Split off traffic to gallifrey, and make sure that websockets
+ # are managed correctly.
+ location / {
+ proxy_pass http://gallifrey:8081;
+ proxy_http_version 1.1;
+ proxy_set_header Upgrade websocket;
+ proxy_set_header Connection upgrade;
+ }
+}