Reverse proxy question

2022-06-22 Thread Saint Michael
I am proxying a website where there is a link like this: https://arvamus.postimees.ee/7550782/lauri-vahtre-tead-kull-kes-utles-n-tahega-sona-ja-siis-juhtus-ei-voi-oelda-mis#_ga=2.218428057.1478980589.1655961279-1635368780.1655961270 my new site is https://postimees.oneye.us I have these substituti

Re: Can I serve CLI Applications using Nginx

2022-06-22 Thread Ahmad Ismail
I have bumped into CGI (after asking the question here). However, I have some issues with CGI. For example, I have to add HEADERS maintaining CRLF etc in the output. However, I want the CLI app to be totally independent. I mean, I want to output regular text or json without any header. So, what I

Re: Error downloading regex-tester

2022-06-22 Thread Jore
Hi there, I think you're trying to do something like: git clone https://github.com/nginxinc/NGINX-Demos.git as `nginx-regex-tester` is a part of the `NGINX-Demos` repository. Maybe look at the Readme.md here? https://github.com/nginxinc/NGINX-Demos Beyond that, I'm not sure. Good luck Jo

Error downloading regex-tester

2022-06-22 Thread Saint Michael
git clone https://github.com/nginxinc/NGINX-Demos/tree/master/nginx-regex-tester Cloning into 'nginx-regex-tester'... fatal: repository 'https://github.com/nginxinc/NGINX-Demos/tree/master/nginx-regex-tester/' not found Any idea how can I install this software?

Re: Can I serve CLI Applications using Nginx

2022-06-22 Thread Lyndon Nerenberg (VE7TFX/VE6BBM)
Ahmad Ismail writes: > Can Nginx help me send the requests to CLI_APP via STDIN and serve the > final output of ADD_UI --output web? I think what you're looking for here is inetd. --lyndon ___ nginx mailing list -- nginx@nginx.org To unsubscribe send a

Can I serve CLI Applications using Nginx

2022-06-22 Thread Ahmad Ismail
I want to create a CLI app (in this case named CLI_APP), that will output json and can be accessed via web. In Linux terms, it will look like: Request | Web_Server | CLI_APP | ADD_UI | Web_Server > Response Now, I will run the app like `CLI_APP --output json`. Here, I am saying that the CLI_APP