I currently have apache sitting at the front end passing requests to jboss on port 8080 like so in my http.conf:
</x-tad-bigger><x-tad-bigger># mod_jk2 configuration
LoadModule jk2_module modules/mod_jk2.so
# for jboss
RewriteEngine on
RewriteRule "^/WEB-INF/?(.*)" "$0" [L,F,NC]
RewriteRule "^/(.*)\.gif$" "$0" [L]
RewriteRule "^/(.*)\.jpg$" "$0" [L]
RewriteRule "^/(.*)\.swf$" "$0" [L]
RewriteRule "^/(.*)\.php$" "$0" [L]
RewriteRule "^/(.*)\.m3u$" "$0" [L]
RewriteRule "^/(.*)\.mp3$" "$0" [L]
RewriteRule "^/(.*)\.html$" "$0" [L]
RewriteRule (.*)\.(js|css|xml|xsl|kont|jx|xsp|svg)$ http://localhost:8080/mysite/$1.$2 [P,L]
RewriteRule "^/(.*)" "http://localhost:8080/$1" [P]
ProxyPassReverse / http://localhost:8080/
</x-tad-bigger><x-tad-bigger>How would I, in this instance, be able to do what you recommended? Bare with me if this seems fairly obvious as I have never worked with https before.
many thanks
Andrew</x-tad-bigger>
On 30 Nov 2004, at 18:07, Bertrand Delacretaz wrote:
Le 30 nov. 04, � 18:43, Andrew M a �crit :
...I am using flowscript and wondered whether is is possible to set https on in flowscript before I call sendPage / sendPageAndWait?
I'd recommend using a front-end httpd server with mod_proxy for https, it's the easiest and cleanest way IMHO.
See http://wiki.apache.org/cocoon/ApacheModProxy, with such a setup you can use the standard https config for httpd.
-Bertrand
