1. 安裝配置Apache
2. 安裝wsgi_mod模塊
3. 開放相應端口
vim /etc/sysconfig/iptables
# Firewall configuration written by system-config-firewall# Manual customization of this file is not recommended.*filter:INPUT ACCEPT [0:0]:FORWARD ACCEPT [0:0]:OUTPUT ACCEPT [0:0]-A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT-A INPUT -p icmp -j ACCEPT-A INPUT -i lo -j ACCEPT-A INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT-A INPUT -m state --state NEW -m tcp -p tcp --dport 8000 -j ACCEPT ##注意位置-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT-A INPUT -j REJECT --reject-with icmp-host-PRohibited-A FORWARD -j REJECT --reject-with icmp-host-prohibitedCOMMIT
4. 為Django網站配置wsgi
vim opt/conf/httpd.conf 添加代碼
ServerName ?.?.?.?:80LoadModule wsgi_module modules/mod_wsgi.soWSGIScriptAlias / /root/web-project/DeviceWeb/DeviceWeb/wsgi.pyWSGIPythonPath /root/web-project/DeviceWeb/<Directory /root/web-project/DeviceWeb><Files wsgi.py>Order deny,allowAllow from all</Files></Directory>Alias /static/ /root/web-project/DeviceWeb/static/<Directory /root/web-project/DeviceWeb/static> Options indexes FollowSymLinks AllowOverride None Order deny,allow Allow from all</Directory>
新聞熱點
疑難解答