X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Fmrstub%2Fapp%2Fnginx.conf;h=35b5ba0cb8f4ab937505db53225589284cc1e325;hb=0f6367023720ecc7d7b4b38cbbc4282792172a89;hp=60b1dd9f35b72bcb3a6b8c9bbdea936906821d0d;hpb=ba50f8809edc7d49a74021e25b4094f4c3174b26;p=nonrtric.git diff --git a/test/mrstub/app/nginx.conf b/test/mrstub/app/nginx.conf index 60b1dd9f..35b5ba0c 100644 --- a/test/mrstub/app/nginx.conf +++ b/test/mrstub/app/nginx.conf @@ -28,10 +28,10 @@ http { default_type application/octet-stream; server { # simple reverse-proxy - listen 3905; - listen [::]:3905; - listen 3906 ssl; - listen [::]:3906 ssl; + listen 3904; + listen [::]:3904; + listen 3905 ssl; + listen [::]:3905 ssl; server_name localhost; ssl_certificate /usr/src/app/cert/cert.crt; ssl_certificate_key /usr/src/app/cert/key.crt; @@ -39,7 +39,8 @@ http { # serve dynamic requests location / { - proxy_pass http://localhost:2222; + proxy_pass http://localhost:2222; + client_max_body_size 0; } } ##