首页 > 学院 > 开发设计 > 正文

DjangoWeb在Apache上的部署

2019-11-14 17:29:31
字体:
来源:转载
供稿:网友

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>

 


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表