Re: upload xml file

2017-03-11 Thread Igal @ Lucee.org
If this is a static file, i.e. a file that you upload to the server and is served as-is, then you do not need anything beyond nginx. nginx does a great job at serving static content. Igal Sapir Lucee Core Developer Lucee.org On 3/11/2017 9:08 PM, Ran Shalit wrote: On M

Re: upload xml file

2017-03-11 Thread Ran Shalit
On Mar 11, 2017 9:04 PM, "Igal @ Lucee.org" wrote: > > Ran, > > You would probably want to use an Application Server behind the Web Server (nginx). Then you would use the nginx to proxy the request to the application server, where you can write code in the language that the application server sup

Re: upload xml file

2017-03-11 Thread Igal @ Lucee.org
Ran, You would probably want to use an Application Server behind the Web Server (nginx). Then you would use the nginx to proxy the request to the application server, where you can write code in the language that the application server supports (for example, I use Lucee as an application serv

Re: upload xml file

2017-03-10 Thread Ran Shalit
On Sat, Mar 11, 2017 at 12:19 AM, Jeff Dyke wrote: > what do you want it to do? if you're talking nginx without any application > backend you could do a lot with some lua locations, or you're going to pass > that request to another process, or serve a static (xml) file from the file > system. Hi

Re: upload xml file

2017-03-10 Thread Jeff Dyke
what do you want it to do? if you're talking nginx without any application backend you could do a lot with some lua locations, or you're going to pass that request to another process, or serve a static (xml) file from the file system. Nginx does support XML just fine, its all a matter of what you

upload xml file

2017-03-10 Thread Ran Shalit
Hello, I am new with web servers and nginx. I would like to ask if nginx support xml , and what does it mean to upload xml to web server ? Does it just keep the xml as file in some directory , or does it do parse the xml file and do some actions ? Thank you, Ran __