为什么我的媒体文件在生产中不起作用

时间:2021-03-14 18:55:36

标签: django apache media

对于服务器,我使用 Linode、DataBase MySql 和 apache2。静态文件工作正常,但图像(媒体文件)不显示:(。已经尝试重新启动服务器并更改 urls.py 文件!

settings.py

STATIC_ROOT = os.path.join(BASE_DIR, 'static')
STATIC_URL = '/static/'

# STATICFILES_DIRS = [os.path.join(BASE_DIR, 'static')]
MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
MEDIA_URL = '/media/'

项目配置文件

<VirtualHost *:80>
        # The ServerName directive sets the request scheme, hostname and port that
        # the server uses to identify itself. This is used when creating
        # redirection URLs. In the context of virtual hosts, the ServerName
        # specifies what hostname must appear in the request's Host: header to
        # match this virtual host. For the default virtual host (this file) this
        # value is not decisive as it is used as a last resort host regardless.
        # However, you must set it for any further virtual host explicitly.
        #ServerName www.example.com

        ServerAdmin webmaster@localhost
        DocumentRoot /var/www/html

        # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
        # error, crit, alert, emerg.
        # It is also possible to configure the loglevel for particular
        # modules, e.g.
        #LogLevel info ssl:warn

        ErrorLog ${APACHE_LOG_DIR}/error.log
        CustomLog ${APACHE_LOG_DIR}/access.log combined

        # For most configuration files from conf-available/, which are
        # enabled or disabled at a global level, it is possible to
        # include a line for only one particular virtual host. For example the
        # following line enables the CGI configuration for this host only
        # after it has been globally disabled with "a2disconf".
        #Include conf-available/serve-cgi-bin.conf

        Alias /static /home/artashes/multi/static
        <Directory /home/artashes/multi/static>
                 Require all granted
        </Directory>

        Alias /media /home/artashes/multi/media
        <Directory /home/artashes/multi/static>
                 Require all granted
        </Directory>

        <Directory /home/artashes/multi/multisad>
                <Files wsgi.py>
                        Require all granted
                </Files>
        </Directory>

        WSGIScriptAlias / /home/artashes/multi/multisad/wsgi.py
        WSGIDaemonProcess django_app python-path=/home/artashes/multi python-home=/home/artashes/multi/venv
        WSGIProcessGroup django_app


</VirtualHost>

如果您需要更多详细信息,请发表评论!我会编辑这个问题)

0 个答案:

没有答案
相关问题