LAMP 多个网站
我是 Ubuntu 的新手。安装了灯。有几个关于它的问题
1)假设第一个网站目录看起来像:var/www/first/ 和第二个网站目录:var/www/second。我如何设置多个网站,并将它们与单独的端口一起使用(例如 http://localhost:81/ 和 < a href="http://localhost:82/" rel="nofollow">http://localhost:82/ )与 IIS 上一样吗?
2) 我如何更改网络服务器的默认位置(默认为 var/www)或确切的网站?
提前谢谢
I'm newbie to Ubuntu. Installed LAMP. Have several questions about it
1) let's say first websites dir looks like : var/www/first/ and second ones: var/www/second. How can i set up multiple website, and use them with seperate ports (like http://localhost:81/ and http://localhost:82/ ) as on IIS?
2) How can i change default location of webserver (default is var/www) or exact website?
Thx in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
1) 在 apache 配置中创建虚拟主机。在我安装的 Ubuntu(较旧的版本)上,配置文件是 /etc/apache2/sites-enabled/000-default。
2)在1中提到的配置文件中,您可以更改默认站点的DocumentRoot。
1) Create virtual hosts in your apache configuration. On my install of Ubuntu (which is older), the configuration file is /etc/apache2/sites-enabled/000-default.
2) In the configuration file mentioned in 1, you can change the DocumentRoot of the default site.
1) 在 Apache
httpd.conf
中配置一个新的虚拟主机。http://httpd.apache.org/docs/2.0/vhosts/examples.html
2) 在 Apache
httpd.conf
中,将 DocumentRoot 更改为“新”文件夹。1) In your Apache
httpd.conf
configure a new virtualhost.http://httpd.apache.org/docs/2.0/vhosts/examples.html
2) In your Apache
httpd.conf
change the DocumentRoot to your "new" folder.