标签:文章 ike 建议 apt apach likely str apt-get code
https://www.cnblogs.com/Jennyism/p/deepin-mysql-install.html
sudo apt-get install apache2
没有什么特殊的配置,我觉得不要让apache占用我们的80端口就好
它的配置文件可能跟我们以前配置文件不在同个地方,在 /etc/apache2
里面有ports.conf,我们可以在里面修改我们的端口
sudo vim ports.conf
# If you just change the port or add more ports here, you will likely also
# have to change the VirtualHost statement in
# /etc/apache2/sites-enabled/000-default.conf
Listen 8766
<IfModule ssl_module>
Listen 443
</IfModule>
<IfModule mod_gnutls.c>
Listen 443
</IfModule>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
按i (进入编辑模式)
把Listen修改为 8766 或者你喜欢的端口
按esc键退出编辑模式
:wq写入并退出
sudo apt-get install php
service apache2 restart
service apache2 status (查看状态)
新建一个php文件
<?php
phpinfo();
?>
复制到 /var/www/html 文件夹
sudo mv test.php /var/www/html
访问 127.0.0.1:8766/test.php测试
标签:文章 ike 建议 apt apach likely str apt-get code
原文地址:https://www.cnblogs.com/Jennyism/p/deepin-lamp-install.html