chatgpt.conf 644 B

1234567891011121314151617
  1. <VirtualHost *:80>
  2. ServerAdmin webmaster@localhost
  3. ServerName maronakingz
  4. ServerAlias maronakingz.local
  5. DocumentRoot /var/www/maronakingz
  6. WSGIDaemonProcess chatgpt user=maronakins threads=5 python-home=/var/www/maronakingz/wsgi/.venv
  7. WSGIScriptAlias /chatgpt /var/www/maronakingz/wsgi/chatgpt.wsgi
  8. WSGIApplicationGroup %{GLOBAL}
  9. <Directory /var/www/maronakingz/wsgi/>
  10. WSGIProcessGroup chatgpt
  11. WSGIApplicationGroup %{GLOBAL}
  12. Order allow,deny
  13. Allow from all
  14. </Directory>
  15. ErrorLog ${APACHE_LOG_DIR}/error.log
  16. CustomLog ${APACHE_LOG_DIR}/access.log combined
  17. </VirtualHost>