Last active
July 30, 2024 12:27
-
-
Save tbvinh/75046625c2d7199c03f7ea9f6aebb566 to your computer and use it in GitHub Desktop.
Change apache2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/etc/apache2/sites-enabled/000-default.conf | |
sudo a2enmod proxy | |
sudo a2enmod proxy_http | |
sudo a2enmod headers | |
sudo systemctl restart apache2 | |
<VirtualHost *:80> | |
#ServerName www.example.com | |
ServerAdmin webmaster@localhost | |
DocumentRoot /var/www/html | |
# Proxy requests to /ai to the Gunicorn server | |
ProxyPreserveHost On | |
ProxyPass /ai http://127.0.0.1:8000 | |
ProxyPassReverse /ai http://127.0.0.1:8000 | |
# Optional: Add headers for security | |
Header always set Access-Control-Allow-Origin "*" | |
Header always set Access-Control-Allow-Methods "GET, POST, PUT, OPTIONS" | |
Header always set Access-Control-Allow-Headers "Content-Type, Authorization" | |
ErrorLog ${APACHE_LOG_DIR}/error.log | |
CustomLog ${APACHE_LOG_DIR}/access.log combined | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment