I'm having a hard time finding documentation on Clojure/Nginx. Can you forward where I can find documentation. I have google search and look at several places, but I have not find a go place. I have found your github site, but still looking for something. Below is some things I would like to do:
- in Java using your NginxJavaRingHandler implemtation iterate over everything that is pass in via the map argument. I want to see my Java class what is being pass in from Nginx.
- I cannot find documentation on how to add clojure to a linix instance. Right now, I'm using your Windows that has Clojure already compiled.
- documentation on all nginx.clojure.XXXX classes and what they do and examples on how to use them.
- do you have a blog?
Thanks, any help would be appreciated
Thanks for the help and information.
I have a question. It is my understanding you cannot call multiple Clojure related rewrite_handler_name directives in the same Location context. Is this correct? For example, if I wanted to validate headers from the caller and from the upstream server.
location / {
#set_header localtime $time_local;
handler_type 'java';
rewrite_handler_name 'com.src.ValidateRequest';
proxy_pass http://upstream.server.com/search;
rewrite_handler_name 'com.src.ValidateResponse';
}