7

django でいくつかのファイルをアップロードしようとしています。サーバーでdjangosビルドを使用するローカルマッシングではすべて正常に動作しますが、生産性サーバーでは次のエラーが発生します。

[Errno 13] Permission denied: '/static'

この問題について多くの質問がありますが、私が見つけたものは何もありませんでした。私の場合、ファイルのアクセス許可とは何の関係もありません。問題は、django が自分の Web サイトのルート フォルダーではなく、ファイル システムのルート フォルダーにファイルを保存することであることがわかりました。「/static」にフォルダーを作成すると、ファイルはそこに作成されますが、たとえば、django は「/var/www/webpage-root/static/...」にあると想定しているため、画像は Web ページに表示されません。

モデルを使用してファイルを保存します。

class Document(models.Model):
    title = models.CharField(max_length=100, blank=True, null=False)
    document = models.FileField(upload_to='static/bachelor/documents/', max_length=500, blank=True, null=True)

次の方法で保存します。

if form.is_valid():
    data = request.FILES['document']
    doc = Document(document=data)
    doc.save()

そこで説明されているように:https://docs.djangoproject.com/en/dev/topics/http/file-uploads/

私は Apache と mod_wsgi を使用しています。Apache ファイルは次のようになります。

<VirtualHost *:80>
    ServerAdmin user@webpage.de
    ServerName webpage.de
    ServerAlias www.webpage.de
    DocumentRoot /var/www/webpage

    Alias /media /var/www/webpage/webpage/
    Alias /static /var/www/webpage/static/

    <Directory /var/www/webpage>
        Order allow,deny
        Allow from all
    </Directory>

    WSGIScriptAlias / /var/www/webpage/apache/webpage.wsgi
    <Directory /var/www/webpage>
            Options Indexes FollowSymLinks MultiViews
            AllowOverride None
            Order allow,deny
            allow from all
    </Directory>

    ErrorLog ${APACHE_LOG_DIR}/webpage-error.log

    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn

    CustomLog ${APACHE_LOG_DIR}/webpage-access.log combined
</VirtualHost>

私のウェブサイトの設定ファイル:

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

# URL that handles the media served from MEDIA_ROOT. Make sure to use a
# trailing slash.
# Examples: "http://example.com/media/", "http://media.example.com/"
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: "/var/www/example.com/static/"
STATIC_ROOT = ''

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

# Additional locations of static files
STATICFILES_DIRS = (
    '/var/www/website/static/',
    '/home/michael/Development/website/static/',
    # 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.
)

# List of finder classes that know how to find static files in
# various locations.
STATICFILES_FINDERS = (
    'django.contrib.staticfiles.finders.FileSystemFinder',
    'django.contrib.staticfiles.finders.AppDirectoriesFinder',
    # 'django.contrib.staticfiles.finders.DefaultStorageFinder',
)

サーバーで静的ファイルを提供する際に既に問題があったため、STATICFILES_DIRS に 2 つの異なるパスを設定する必要がありました。この 2 行を使用すると、開発マシンと apache を実行するパブリック サーバーの両端で静的ファイルを提供できます。

構成に何かが欠けていましたか、それとも何か問題がありますか? Apache がファイルを /var/www/website/static ではなく /static にアップロードする理由はわかりませんが、Apache の構成に問題がある可能性があると思います...

誰かがアイデアを持っているか、私を助けてくれますか?

どうもありがとう

4

3 に答える 3

2

static フォルダーの所有権を変更する必要があります。root ユーザーで「sudo chown -R yourusername:yourgroupname /projectfolder/static」を試してください。

于 2016-02-10T15:47:12.907 に答える