From 718df62173079b33ba9be33825a7650224afae4d Mon Sep 17 00:00:00 2001 From: Denys Vuika Date: Wed, 22 Oct 2025 11:59:40 +0100 Subject: [PATCH] Remove nginx configuration file and update cspell dictionary to exclude 'nginx' --- cspell.json | 1 - nginx.conf | 122 ---------------------------------------------------- 2 files changed, 123 deletions(-) delete mode 100644 nginx.conf diff --git a/cspell.json b/cspell.json index f7625d3e94..3179072d98 100644 --- a/cspell.json +++ b/cspell.json @@ -86,7 +86,6 @@ "mouseenter", "multiselect", "mysites", - "nginx", "numbervisibilityprocess", "OAUTHCONFIG", "oidc", diff --git a/nginx.conf b/nginx.conf deleted file mode 100644 index e9ae64fe3f..0000000000 --- a/nginx.conf +++ /dev/null @@ -1,122 +0,0 @@ - -#user nobody; -worker_processes 1; - -#error_log logs/error.log; -#error_log logs/error.log notice; -#error_log logs/error.log info; - -#pid logs/nginx.pid; - - -events { - worker_connections 1024; -} - - -http { - #include mime.types; - default_type application/octet-stream; - - #log_format main '$remote_addr - $remote_user [$time_local] "$request" ' - # '$status $body_bytes_sent "$http_referer" ' - # '"$http_user_agent" "$http_x_forwarded_for"'; - - #access_log logs/access.log main; - - sendfile on; - #tcp_nopush on; - - #keepalive_timeout 0; - keepalive_timeout 65; - - #gzip on; - - server { - listen 8888; - server_name dev-platform-proxy; - - #set $allowOriginSite http://127.0.0.1:3000; - set $allowOriginSite *; - - gzip on; - gzip_min_length 1000; - gzip_proxied expired no-cache no-store private auth; - underscores_in_headers on; - proxy_pass_request_headers on; - proxy_pass_header Set-Cookie; - - location /alfresco/ { - proxy_pass http://localhost:8080/; - proxy_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504; - proxy_redirect off; - proxy_buffering off; - 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_header Set-Cookie; - } - - location /activiti/ { - proxy_pass http://localhost:9999/; - proxy_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504; - proxy_redirect off; - proxy_buffering off; - 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_header Set-Cookie; - proxy_pass_request_headers on; - } - - location / { - proxy_pass http://localhost:3000/; - proxy_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504; - proxy_redirect off; - proxy_buffering off; - 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_set_header X-NginX-Proxy true; - proxy_pass_header Set-Cookie; - proxy_pass_request_headers on; - } - } - - - # another virtual host using mix of IP-, name-, and port-based configuration - # - #server { - # listen 8000; - # listen somename:8080; - # server_name somename alias another.alias; - - # location / { - # root html; - # index index.html index.htm; - # } - #} - - - # HTTPS server - # - #server { - # listen 443 ssl; - # server_name localhost; - - # ssl_certificate cert.pem; - # ssl_certificate_key cert.key; - - # ssl_session_cache shared:SSL:1m; - # ssl_session_timeout 5m; - - # ssl_ciphers HIGH:!aNULL:!MD5; - # ssl_prefer_server_ciphers on; - - # location / { - # root html; - # index index.html index.htm; - # } - #} - #include servers/*; -}