9

今、私はこのチュートリアルに従おうとしています:

http://honza.ca/2011/05/deploying-django-with-nginx-and-gunicorn

テンプレート サイトは正しく読み込まれますが、画像が読み込まれません。これは、私のアプリケーションの config.py ファイルの一部です。

# Absolute filesystem path to the directory that will hold user-uploaded files.
# Example: "/home/media/media.lawrence.com/media/"
MEDIA_ROOT = ''

# URL that handles the media served from MEDIA_ROOT. Make sure to use a
# trailing slash.
# Examples: "http://media.lawrence.com/media/", "http://example.com/media/"
MEDIA_URL = ''

# Absolute path to the directory static files should be collected to.
# Don't put anything in this directory yourself; store your static files
# in apps' "static/" subdirectories and in STATICFILES_DIRS.
# Example: "/home/media/media.lawrence.com/static/"
STATIC_ROOT = '/home/lilo/textImageSite/imageSite/static/' 

# URL prefix for static files.
# Example: "http://media.lawrence.com/static/"
STATIC_URL = '/static/' 

# Additional locations of static files
STATICFILES_DIRS = (
    # Put strings here, like "/home/html/static" or "C:/www/django/static".
    # Always use forward slashes, even on Windows.
    # Don't forget to use absolute paths, not relative paths.
)

私の nginx 設定ファイル (/etc/nginx/sites-enabled にあります):

server {
listen 80;
server_name xxx.xx.xx.xx; #the actual IP of the server; it has a public IP address

access_log /home/lilo/textImageSite/access.log;
error_log /home/lilo/textImageSite/error.log;

location /static {
    root /home/lilo/textImageSite/imageSite;
}

location / {
    proxy_pass http://127.0.0.1:8888;
}
}

私の gunicorn_conf ファイル:

bind = "0.0.0.0:8888"
logfile = "/home/lilo/textImageSite/gunicorn.log"
workers = 3

そして今、私のテンプレートでは、これが私が画像にアクセスする方法です:

<img src="{{STATIC_URL}}{{ choice.image_location}}" /> <br />

生成された HTML は次のようになります。

<img src="/static/street_sign2.jpg" /> <br />

テキストの壁で申し訳ありませんが、セットアップの何が問題なのかわかりません...

4

1 に答える 1

20

私は自分の問題を修正したことが判明しました... Nginxの仕組みを誤解していました。:D

server {
listen 1234; //port that Nginx listens on
server_name xxx.xx.xx.xx; #the actual IP of the server; it has a public IP address

access_log /home/lilo/textImageSite/access.log;
error_log /home/lilo/textImageSite/error.log;

location /static {
    root /home/lilo/textImageSite/imageSite;
}

location / {
    proxy_pass http://127.0.0.1:8888; //the port that Gunicorn uses 
}
}

したがって、私の場合、Gunicorn インスタンスをポート 8888 で実行している場合、xxx.xxx.xx.x:8888/textImageSite に移動するとページが読み込まれますが、静的コンテンツはありません。xxx.xxx.xx.x:1234 を使用してアクセスすると、ページは静的コンテンツ (画像、CSS スタイル シートなど) を読み込みます。Gunicorn と Nginx を使用するのは初めてです (また、Django アプリを作成するのも初めてです)。混乱している人に役立つことを願っています :)

于 2012-07-12T00:48:53.983 に答える