作为 Mojolicious 的新手,我无法让我的应用程序正常工作。我在远程服务器上运行所有东西,但我能找到的所有教程都只想展示 localhost 的部署方式。正如标题所示,我收到 500 个内部服务器错误,而不是正在加载/运行的应用程序,并且不知道为什么。有人可以解释一下对于那些不使用本地机器来运行他们的应用程序的人是如何做到的吗?
这是生成的演示应用程序,一切都很漂亮:
#!/usr/bin/env perl
use Mojolicious::Lite;
# Documentation browser under "/perldoc"
plugin 'PODRenderer';
get '/test' => sub {
my $c = shift;
$c->render(template => 'index');
};
app->start;
__DATA__
@@ index.html.ep
% layout 'default';
% title 'Welcome';
<h1>Welcome to the Mojolicious real-time web framework!</h1>
To learn more, you can browse through the documentation
<%= link_to 'here' => '/perldoc' %>.
@@ layouts/default.html.ep
<!DOCTYPE html>
<html>
<head><title><%= title %></title></head>
<body><%= content %></body>
</html>
一切正常,hypnotoad 命令返回:
Listening at "http://*:8080"
Server available at http://127.0.0.1:8080
需要做什么才能让这个应用程序通过网站 url 而不是 localhost 加载?
抱歉,如果这似乎是一个愚蠢的问题,但似乎没有任何明显的教程或关于从远程服务器运行 mojo 应用程序的太多讨论,所以任何帮助都是 appriciated,因为我确信其他新手以前也遇到过类似的问题,而且更多来。