Ubuntu18.4中Apache在加不同端口的虚拟主机


1.添加监听端口

sudo vim /etc/apache2/ports.conf


Listen 80
Listen 6080
<IfModule ssl_module>
         Listen 443
</IfModule>

<IfModule mod_gnutls.c>
         Listen 443
</IfModule>


2.添加虚拟主机配置

sudo vim /etc/apache2/sites-available/gisas.conf


<VirtualHost *:6080>

        #ServerName www.example.com

        ServerAdmin webmaster@localhost
         DocumentRoot /var/www/html

       <Directory /var/www/html>
                   Options Indexes FollowSymLinks MultiViews
                   AllowOverride None
                   Order allow,deny
                   allow from all
         </Directory>

        #Rewrite
         RewriteEngine On


         ErrorLog ${APACHE_LOG_DIR}/error-gisas.log
         CustomLog ${APACHE_LOG_DIR}/access-gisas.log combined

        WSGIDaemonProcess gisas user=my group=my threads=5
         WSGIScriptAlias / /var/www/apps/gisas/gisas.wsgi
         <Directory "/var/www/apps/gisas/">
             WSGIProcessGroup gisas
             WSGIApplicationGroup %{GLOBAL}
             Order allow,deny
             Allow from all
         </Directory>


</VirtualHost>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet


3.应用虚拟主机配置

sudo a2ensite gisas


4.重启服务

sudo systemctl restart apache2

转载于:https://www.cnblogs.com/gispathfinder/p/10615462.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值