nginx 아래 배치 showdoc

998 단어 ShowdocNginx
1. nginx 서버 설치 sudo apt-get install nginx -y2. 서비스 시작 sudo service nginx start3. php 환경 설치
sudo apt-get install -y php7.1 php7.1-fpm php7.1-gd php7.1-mcrypt php7.1-mbstring php7.1-mysql php7.1-pdo  php7.1-sqlite

4. nginx 설정
php. conf 파일 편집 sudo vim /etc/nginx/conf.d/php.conf
server {
    listen 80;
    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    location ~ \.php$ {
        root           /var/www/html;
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        include        fastcgi_params;
    }
}

5. 설정 새로 고침 sudo service nginx reload6. rz 명령 으로 코드 업로드 /var/www/html7. showdoc 에 권한 부여 chmod -R 777 showdoc8. 방문 xx.com/showdoc/web/#/
  • 참조http://www.showdoc.cc/web/#/php?page_id=15072
  • 좋은 웹페이지 즐겨찾기