Внутренняя ошибка сервера при загрузке проекта django на сервер apache

Попытался загрузить свой проект djnago на сервер apache2 и в самом начале не получил доступа (ошибка 403). После того, как проблема была как-то решена, появилась новая - Internal Server Error.

/var/log/apache2/error.log:

[Sat Sep 07 22:05:50.292291 2024] [core:warn] [pid 74852:tid 129319697659776] AH00045: child process 74853 still did not exit, sending a SIGTERM
[Sat Sep 07 22:05:50.292335 2024] [core:warn] [pid 74852:tid 129319697659776] AH00045: child process 74854 still did not exit, sending a SIGTERM
[Sat Sep 07 22:05:52.294434 2024] [core:error] [pid 74852:tid 129319697659776] AH00046: child process 74853 still did not exit, sending a SIGKILL
[Sat Sep 07 22:05:52.294476 2024] [core:error] [pid 74852:tid 129319697659776] AH00046: child process 74854 still did not exit, sending a SIGKILL
[Sat Sep 07 22:05:53.295592 2024] [mpm_event:notice] [pid 74852:tid 129319697659776] AH00491: caught SIGTERM, shutting down
[Sat Sep 07 22:08:55.562107 2024] [mpm_event:notice] [pid 76122:tid 129486358599552] AH00489: Apache/2.4.52 (Ubuntu) mod_wsgi/4.9.0 Python/3.10 configured -- resuming normal operations
[Sat Sep 07 22:08:55.562464 2024] [core:notice] [pid 76122:tid 129486358599552] AH00094: Command line: '/usr/sbin/apache2'

/etc/apache2/sites-available/mysite.conf

<VirtualHost *:80>
    ServerName myip

    WSGIScriptAlias / /my/directory/my_project/wsgi.py

    <Directory /my/directory/my_project>
        <Files wsgi.py>
            Require all granted
        </Files>
    </Directory>

    Alias /static /my/directory/my_project
    <Directory /my/directory/my_project>
        Require all granted
    </Directory>

    ErrorLog ${APACHE_LOG_DIR}/mysite_error.log
    CustomLog ${APACHE_LOG_DIR}/mysite_access.log combined
</VirtualHost>

Если кому-то нужна дополнительная информация, я буду рад ее предоставить

Я уже пробовал несколько команд с sudo chmod -R 755 и sudo chown -R www-data:www-data, но это не помогло

Вернуться на верх