Hello, I'm having problems deploying a simple dancer app with Apache+Starman. Even using the most basic setup doesn't seem to work properly - the "request.uri_for()" returns "http://localhost:3000" instead of the virtual server name. I tried following the varied instructions in Dancer::Deployment, but that are just too many options, or perhaps I don't understand how the different parts connect. What I did is: ## 1. Create a new app $ dancer -a foo $ cd foo ## 2. Start the server with Starman $ plackup -s Starman -l 127.0.0.1:3000 ./bin/app.pl ## In Apache, my configuration is; <VirtualHost *:80> ServerName xxxx.cshl.edu ServerAlias xxxx ProxyPass / http://localhost:3000/ ProxyPassReverse / http://localhost:3000/ </VirtualHost> That's it, nothing more, nothing less. I can see the main Dancer website stub ("Perl is Dancing" etc.), but every link inside the HTML page (e.g. the CSS file) points to "http://localhost:3000" instead of "http://xxxx.cshl.edu" - so none of the links is working. Any suggestion will be highly appreciated, Thanks, -assaf.