X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=near-rt-ric-simulator%2Ftest%2FEXT_SRV%2Fnginx.conf;fp=near-rt-ric-simulator%2Ftest%2FEXT_SRV%2Fnginx.conf;h=0a3bd6578c2f7454d0a058bad7d6b8a446da8538;hb=595506e290356d26b8eebfab32ef8d3f625cbb0a;hp=7b3e620affb9642dc2dc2db5a16efbcafc07d76a;hpb=fc48f0fad61ccee381283fadfe3e03fa1cd1c42d;p=sim%2Fa1-interface.git diff --git a/near-rt-ric-simulator/test/EXT_SRV/nginx.conf b/near-rt-ric-simulator/test/EXT_SRV/nginx.conf old mode 100644 new mode 100755 index 7b3e620..0a3bd65 --- a/near-rt-ric-simulator/test/EXT_SRV/nginx.conf +++ b/near-rt-ric-simulator/test/EXT_SRV/nginx.conf @@ -32,8 +32,8 @@ http { perl_set $allow_http 'sub { return $ENV{"ALLOW_HTTP"}; }'; server { # simple reverse-proxy - listen 8085; - listen [::]:8085; + listen 9095; + listen [::]:9095; server_name localhost; if ($allow_http != true) { return 444; @@ -44,13 +44,13 @@ http { 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; + proxy_pass http://localhost:3333; } } server { # simple reverse-proxy - listen 8185 ssl; - listen [::]:8185 ssl; + listen 9195 ssl; + listen [::]:9195 ssl; server_name localhost; ssl_certificate /usr/src/app/cert/cert.crt; ssl_certificate_key /usr/src/app/cert/key.crt; @@ -61,7 +61,7 @@ http { 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; + proxy_pass http://localhost:3333; } } ## @@ -90,4 +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; -} \ No newline at end of file +}