久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

ubuntu14.04 +nginx+php5-fpm

 寂寞如故 2015-07-20

一,,安裝Nginx

  apt-get install nginx

  1,,配置nginx

    nginx所有的配置在 /etc/nginx/nginx.conf中

    nginx.conf配置里面包括了

      include /etc/nginx/conf.d/*.conf;

           include /etc/nginx/sites-enabled/*;
        這兩個配置,所以這里面的配置也是有效的,。
       錯誤日志 error_log /var/log/nginx/error.log;
 
  這里我們把配置寫在 /etc/nginx/sites-available/default中
  修改  root /usr/share/nginx/html;   這是網(wǎng)頁的根目錄,,默認里面有一個index.html頁面
     index  index.html index.htm修改成index index.php index.html index.htm;
     增加  
       
  location ~ \.php$ {
                  try_files $uri =404;
                  fastcgi_pass 127.0.0.1:9000;
                  fastcgi_index index.php;
                  include fastcgi_params;
          }
 
  2,保存文件,,使配置生效 /etc/init.d/nginx reload
 
  3,,啟動nginx
    /etc/init.d/nginx start
 
  4,在 /usr/share/nginx/html下新建index.php
    <? php
    phpinfo();
    ?>
二 安裝php
sudo apt-get install php5-fpm
sudo apt-get install php5-gd  # Popular image manipulation library; used extensively by Wordpress and it's plugins.
sudo apt-get install php5-cli   # Makes the php5 command available to the terminal for php5 scripting
sudo apt-get install php5-curl    # Allows curl (file downloading tool) to be called from PHP5
sudo apt-get install php5-mcrypt   # Provides encryption algorithms to PHP scripts
sudo apt-get install php5-mysql   # Allows PHP5 scripts to talk to a MySQL Database
sudo apt-get install php5-readline  # Allows PHP5 scripts to use the readline function

查看php5運行進程
ps -waux | grep php5

打開關(guān)閉php5進程

sudo service php5-fpm stop
sudo service php5-fpm start
sudo service php5-fpm restart
sudo service php5-fpm status

配置php5監(jiān)聽端口 /etc/php5/fpm/pool.d/www.conf

listen = /var/run/php5-fpm.sock  改為
listen = 127.0.0.1:9000

    本站是提供個人知識管理的網(wǎng)絡(luò)存儲空間,,所有內(nèi)容均由用戶發(fā)布,,不代表本站觀點。請注意甄別內(nèi)容中的聯(lián)系方式,、誘導購買等信息,,謹防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,,請點擊一鍵舉報。
    轉(zhuǎn)藏 分享 獻花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多