博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
(LNMP) How To Install Linux, nginx, MySQL, PHP
阅读量:5927 次
发布时间:2019-06-19

本文共 1906 字,大约阅读时间需要 6 分钟。

hot3.png

How To Install Linux, nginx, MySQL, PHP (LNMP) stack on Ubuntu 14.x#2015.04.03Nginx     sudo apt-get update    sudo apt-get install nginxTest Nginx     visit http://IP    ELSE " /etc/init.d/nginx start "MySQL    sudo apt-get install mysql-server    sudo mysql_install_db       #generate directory structure    sudo mysql_secure_installation  #modify insecure  default setting,reset root password here            PHP     sudo apt-get install php5-fpm php5-mysql    sudo vim /etc/php5/fpm/php.ini        -----        cgi.fix_pathinfo=0        -----    sudo service php5-fpm restart    Config Nginx to enable PHP        sudo vim  /etc/nginx/sites-available/default            -----        server {            listen 80 default_server;               #port here            listen [::]:80 default_server ipv6only=on;            root /usr/share/nginx/html;             #location of web files            index index.php index.html index.htm;   #add  'index.php' content            server_name server_domain_name_or_IP;   #here need modify            location / {                try_files $uri $uri/ =404;            }            error_page 404 /404.html;            error_page 500 502 503 504 /50x.html;            location = /50x.html {                root /usr/share/nginx/html;         #location of web files            }            location ~ \.php$ {                try_files $uri =404;                fastcgi_split_path_info ^(.+\.php)(/.+)$;                fastcgi_pass unix:/var/run/php5-fpm.sock;                fastcgi_index index.php;                fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; #the key setting of resolve php files                 include fastcgi_params;            }        }        -----    sudo service nginx restartTest PHP     sudo vim /usr/share/nginx/html/info.php        
    Visit :  http://IP/info.php

转载于:https://my.oschina.net/u/2407499/blog/475068

你可能感兴趣的文章
什么是事件冒泡?如何用jquery/js阻止事件冒泡?阻止冒泡有什么作用?小生来抛个砖。...
查看>>
也可以改为while(input[0])或while(cin&&input[0])
查看>>
nginx对websocket的支持及uliweb chatroom的测试
查看>>
中小企业SaaS型软件BI的发展前景
查看>>
算法分析笔记
查看>>
go方法的深入探究(7.21增补)
查看>>
本文主要总结关于mysql的优化(将会持续更新)
查看>>
Mac怎么不能拷贝文件到U盘
查看>>
FirewallD is not running
查看>>
linux ubuntu deepin apache2 rewrite
查看>>
如何像Uber一样给工程师派单,解放外包生产力?
查看>>
源码免杀处理的技巧与tips
查看>>
Groove list操作-转数组,collect,each等
查看>>
spring boot微服务通用部署启动脚本
查看>>
Word打不开,如何修复word文档?
查看>>
开发们 点广告-赚点BT币
查看>>
The import com.sun.tools cannot be resolved
查看>>
CSS Id 和 Class
查看>>
String,StringBuffer与StringBuilder的区别
查看>>
使用WebSocket绕过广告屏蔽插件
查看>>