微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Django 图像未添加到媒体文件夹

如何解决Django 图像未添加到媒体文件夹

所以问题是在带有媒体文件的生产代码中不起作用(模型图像没有添加到那里)。如果你需要一些细节,请写!谢谢你的帮助)

项目配置

<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>

设置

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

顺便说一下,我在 linode 服务器上使用 apache2

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。