时间:2021-07-01 10:21:17 帮助过:17人阅读
apt-get install nginx
2.启动Nginx
service nginx start
3.访问服务器IP
如果看到“Welcome to nginx!”说明安装好了。
4.安装PHP
apt-get install php5-fpm
5.配置Nginx
vi /etc/nginx/sites-available/default
找到下列代码,去掉相应注释
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php5-fpm.sock;
}
重启服务
service nginx restart
6.默认的网站根目录在/var/www/html
vi /var/www/html/test.php
输入以下内容,并保存
echo phpinfo();
?>
访问网站IP/test.php,如果可以看到phpinfo的信息说明php安装成功。
').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i <= lines; i++) { $numbering.append($('').text(i)); }; $numbering.fadeIn(1700); }); });以上就介绍了Ubuntu常用服务器环境搭建——Nginx+PHP篇,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。