I know there are alot of resources that explain this, but, I can't get any of them to work :(
I want to use apache to serve static files, and, i seaside to live behind it. i have already gotten apache to pass seaside dynamic pages with: ProxyPass /seaside/ http://localhost:8080/seaside/ in my httpd.conf. This is my goal, have pier running on seaside behind apache so that pier can use files statically hosted by apache, in particular, sytlesheets :) -- David Zmick /dz0004455\ http://dz0004455.googlepages.com http://dz0004455.blogspot.com _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
ok, i can try, but i dont think i will be much help :)
On Fri, Aug 15, 2008 at 10:27 PM, David Zmick <[hidden email]> wrote:
-- David Zmick /dz0004455\ http://dz0004455.googlepages.com http://dz0004455.blogspot.com _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
when i try to send to you, i get an error from the mail delivery system, and i can't send it
On Sat, Aug 16, 2008 at 12:04 AM, Merik Voswinkel <[hidden email]> wrote:
-- David Zmick /dz0004455\ http://dz0004455.googlepages.com http://dz0004455.blogspot.com _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Check the archive of the SmallWiki mailing-list, it features numerous
posts explaining Apache setup: http://www.google.com/search?hl=en&q=site%3Ahttp%3A%2F%2Fwww.iam.unibe.ch%2Fpipermail%2Fsmallwiki%2F+virtualhost&btnG=Search For example this is a simple configuration: http://www.iam.unibe.ch/pipermail/smallwiki/2006-February/001710.html To summarize the possible causes of problems: Make sure that you are on Apache 2, because this makes things much simpler. Use "ProxyPreserveHost On". Don't use "ProxyPass", but "RewriteRules". Cheers, Lukas -- Lukas Renggli http://www.lukas-renggli.ch _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Lukas Renggli wrote:
> Check the archive of the SmallWiki mailing-list, it features numerous > posts explaining Apache setup: > > http://www.google.com/search?hl=en&q=site%3Ahttp%3A%2F%2Fwww.iam.unibe.ch%2Fpipermail%2Fsmallwiki%2F+virtualhost&btnG=Search > > For example this is a simple configuration: > > http://www.iam.unibe.ch/pipermail/smallwiki/2006-February/001710.html > > To summarize the possible causes of problems: Make sure that you are > on Apache 2, because this makes things much simpler. Use > "ProxyPreserveHost On". Don't use "ProxyPass", but "RewriteRules". If I may suggest something: The Documentation page on seaside.st could do with an "Integrating Seaside" section. Subsections could be Integrating Seaside with apache Integrating Seaside with other webservers Integrating Seaside with other App Servers and so on. I am not sure how useful it is to keep documentation like that in mailing list archives. _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
I've got it, but, I have another question, when i loaded the application after setting it up with a virtualhost, I didn't have any of the style sheets, so I dumped all of the libraries my application was using and put them in /var/www/static/seaside/files. Me server gets static files from /var/www/static, and everything worked, after changing the settings for the seaside app. Is this a bad practice?
On Sun, Aug 17, 2008 at 2:26 PM, Claus Kick <[hidden email]> wrote:
-- David Zmick /dz0004455\ http://dz0004455.googlepages.com http://dz0004455.blogspot.com _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
In reply to this post by Claus Kick
On Sun, Aug 17, 2008 at 12:26 PM, Claus Kick <[hidden email]> wrote:
This is a very good idea. -Conrad
_______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Totally agree.
It took me at least 3 times as much time to get
Apache up and running with Seaside as it did to actually write the Seaside
application.
@+Maarten,
_______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
I have pier running now, but I can't get it to get the style sheets, or anything in a file library!
This is my setup: the server is running on http://w337.uni.cc i have a python project running at http://w337.uni.cc/sam and On Mon, Aug 18, 2008 at 2:37 AM, Maarten MOSTERT <[hidden email]> wrote:
-- David Zmick /dz0004455\ http://dz0004455.googlepages.com http://dz0004455.blogspot.com _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
ok, i got it working with this htaccess:
RewriteEngine on #Sam's Project RewriteRule ^sam(.*) http://localhost:14002$1 [P] #Comics Project RewriteRule ^comics(.*) http://localhost:14003$1 [P] #My Project RewriteRule ^seaside/files.* - [L] RewriteRule ^seaside(.*)$ http://localhost:8080/seaside/pier$1 [P,L]
On Mon, Aug 18, 2008 at 4:31 PM, David Zmick <[hidden email]> wrote:
-- David Zmick /dz0004455\ http://dz0004455.googlepages.com http://dz0004455.blogspot.com _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Free forum by Nabble | Edit this page |