admin管理员组文章数量:1344229
I am migrating a Dancer2 site from Apache 2.2 to Apache 2.4 (Apache2 under Ubuntu). It works under 2.2 on CentOS, but not on the Ubuntu with 2.4. I copied the whole Dancer2 directory to the new server. I do the output with template commands, if that matters.
I read the Apache2 error log and put perl debugs before and after the template command. There are no errors between the debugs.
Here is the meaningful part of the Apache conf file. I have verified that apache reads it.
DocumentRoot /var/webapps/sandbox/public
<FilesMatch "\.(?:cgi|shtml|phtml|php)$">
SSLOptions +StdEnvVars
</FilesMatch>
<Directory "/var/webapps/sandbox/public">
Options +Indexes +FollowSymLinks +MultiViews +ExecCGI
AddHandler cgi-script .cgi
AllowOverride None
Require all granted
SSLOptions +StdEnvVars
</Directory>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ /dispatch.cgi$1 [QSA,L]
# ScriptAlias / /var/webapps/sandbox/public/dispatch.cgi/
<Location />
# Set up your Dancer2 application
SetHandler cgi-script
AddHandler application/x-httpd-perl .cgi
PerlSetEnv Dancer2_APP /var/webapps/sandbox/bin/app.pl
PerlSetEnv DANCER2_CONFDIR /var/webapps/sandbox
PerlSetEnv DANCER_CONFDIR /var/webapps/sandbox
PerlSetEnv DANCER2_ENV development
</Location>
I tried very simple routes with no output. I verified that Dancer invokes the correct routes.
本文标签: apacheNot getting output from Dancer2 with Apache2Stack Overflow
版权声明:本文标题:apache - Not getting output from Dancer2 with Apache2 - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743738943a2530533.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论