X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=near-rt-ric-simulator%2Fnginx.conf;h=7b3e620affb9642dc2dc2db5a16efbcafc07d76a;hb=refs%2Fheads%2Ff-release;hp=5ba9dbe34481b2863f1215cd9c9e0a7623c8ffc4;hpb=9ab67f5d44b9e5bfcafddd6ea5e0ae10f68ca110;p=sim%2Fa1-interface.git diff --git a/near-rt-ric-simulator/nginx.conf b/near-rt-ric-simulator/nginx.conf index 5ba9dbe..7b3e620 100644 --- a/near-rt-ric-simulator/nginx.conf +++ b/near-rt-ric-simulator/nginx.conf @@ -1,8 +1,10 @@ -user www-data; +# user www-data; worker_processes auto; pid /run/nginx.pid; include /etc/nginx/modules-enabled/*.conf; +env ALLOW_HTTP; + events { worker_connections 768; # multi_accept on; @@ -27,9 +29,26 @@ http { include /etc/nginx/mime.types; default_type application/octet-stream; + perl_set $allow_http 'sub { return $ENV{"ALLOW_HTTP"}; }'; + server { # simple reverse-proxy - listen 8085; + listen 8085; listen [::]:8085; + server_name localhost; + if ($allow_http != true) { + return 444; + } + + # serve dynamic requests + location / { + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_pass http://localhost:2222; + } + } + + server { # simple reverse-proxy listen 8185 ssl; listen [::]:8185 ssl; server_name localhost; @@ -39,7 +58,10 @@ http { # serve dynamic requests location / { - proxy_pass http://localhost:2222; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_pass http://localhost:2222; } } ## @@ -68,33 +90,4 @@ http { # gzip_buffers 16 8k; # gzip_http_version 1.1; # gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript; - - ## - # Virtual Host Configs - ## - - include /etc/nginx/conf.d/*.conf; - include /etc/nginx/sites-enabled/*; -} - - -#mail { -# # See sample authentication script at: -# # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript -# -# # auth_http localhost/auth.php; -# # pop3_capabilities "TOP" "USER"; -# # imap_capabilities "IMAP4rev1" "UIDPLUS"; -# -# server { -# listen localhost:110; -# protocol pop3; -# proxy on; -# } -# -# server { -# listen localhost:143; -# protocol imap; -# proxy on; -# } -#} \ No newline at end of file +} \ No newline at end of file