Lighttpd + Django配置 - “等待连接”

时间:2013-03-19 10:15:38

标签: python django fastcgi lighttpd

我想用Django配置Lighttpd以显示在localhost:3033基本的“hello-world”Django网站(由$ django-admin startproject hellodjango创建)。我跟着documentation,但我不能让我的网站工作。去了localhost后:3033没有任何反应,我唯一看到的是“等待conncetion”的消息。

我的 lighttpd.config

server.groupname            = "www-data"

index-file.names            = ( "index.php", "index.html",
                                "index.htm", "default.htm",
                               " index.lighttpd.html" )

url.access-deny             = ( "~", ".inc" )

static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" )

## Use ipv6 if available
#include_shell "/usr/share/lighttpd/use-ipv6.pl"

dir-listing.encoding        = "utf-8"
server.dir-listing          = "enable"

compress.cache-dir          = "/var/cache/lighttpd/compress/"
compress.filetype           = ( "application/x-javascript", "text/css", "text/html", "text/plain" )

include_shell "/usr/share/lighttpd/create-mime.assign.pl"
include_shell "/usr/share/lighttpd/include-conf-enabled.pl"


# My configuration
$HTTP["host"] == "www.hellodjango.com" {

    server.document-root = "/home/krris/programowanie/django/hellodjango"
    server.errorlog = "/home/krris/programowanie/django/hellodjango/logs/error.log"
    accesslog.filename = "/home/krris/programowanie/django/hellodjango/logs/access.log"
    fastcgi.server = (
        "/hellodjango.fcgi" => (
            "main" => (
                # Use host / port instead of socket for TCP fastcgi
                "host" => "127.0.0.1",
                "port" => 3033,
                # "socket" => "/home/krris/hellodjango.sock",
                "check-local" => "disable",
            )
        ),
    )
    alias.url = (
        "/media/" => "/home/krris/programowanie/django/hellodjango/media/",
    )

    url.rewrite-once = (
        "^(/media.*)$" => "$1",
        "^/favicon\.ico$" => "/media/favicon.ico",
        "^(/.*)$" => "/hellodjango.fcgi$1",
    )
}

hellodjango.fcgi

#!/usr/bin/python
import sys, os

# Add a custom Python path.
sys.path.insert(0, "..")

# Switch to the directory of your project. (Optional.)
os.chdir("/home/krris/programowanie/django/hellodjango")

# Set the DJANGO_SETTINGS_MODULE environment variable.
os.environ['DJANGO_SETTINGS_MODULE'] = "hellodjango.settings"

from django.core.servers.fastcgi import runfastcgi
runfastcgi(method="prefork", daemonize="true", host="127.0.0.1", port="3033")

我还将此行添加到 settings.py

FORCE_SCRIPT_NAME = ""

我使用命令运行我的应用程序:

$ ./manage.py runfcgi method=prefork host=127.0.0.1 port=3033

error.log中:

2013-03-19 11:27:10: (log.c.166) server started 
2013-03-19 11:27:16: (server.c.1396) [note] graceful shutdown started 
2013-03-19 11:27:16: (log.c.166) server started 
2013-03-19 11:27:16: (server.c.1512) server stopped by UID = 0 PID = 8093

我正在使用Ubuntu 12.10。

2 个答案:

答案 0 :(得分:0)

您的服务器由于某种原因而停止。一种可能的调试方法是在这里设置daemonize =“false”:

runfastcgi(method =“prefork”,daemonize =“true”,host =“127.0.0.1”,port =“3033”)

这可以帮助您了解正在发生的事情以及服务器关闭的原因。

答案 1 :(得分:0)

我已经尝试过做你刚刚做过的事情。 我发现做这项工作的另一件事(我认为)是确保:

  • .fcgi文件拥有每个人的可执行权限。
  • 日志文件夹也必须拥有权限。

我看到的只是项目文件夹的文件列表视图。 这是你得到的吗? 它对我来说也不适用于www.helloDjango.com网址。

如果您得到相同的结果,请告诉我。 我也发现要获得一个基本的hello world页面真的很困难而且令人困惑。