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

问题描述

对于服务器,我使用 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>

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

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)