wordpress on nginx 구축

2402 단어
내부 네트워크 는 bolg 을 만 들 었 고 nginx + phop + my sql + wordpress 를 사 용 했 습 니 다.전체 과정 이 결코 복잡 하지 않 고, 만난 문 제 를 기록 하 다.
1. nginx 설치
./configure –prefix=/usr/local/nginx –with-zlib –with-pcre=/opt/ftp/http-server/pcre-8.34 –with-http_perl_module –with-http_stub_status_module –with-http_image_filter_module –with-http_gunzip_module –with-http_gzip_static_module
2.php
./configure –prefix=/usr/local/php '–with-config-file-path=/usr/local/php-5.4.23/etc' '–enable-fpm' '–enable-pcntl' '–enable-shmop' '–enable-sysvsem' '–enable-inline-optimization' '–disable-rpath' '–enable-safe-mode' '–with-mysql=mysqlnd' '–with-mysqli=mysqlnd' '–with-pdo-mysql=mysqlnd' '–with-libxml-dir=/usr/local' '–enable-xml=/usr/local' '–with-openssl' –with-zlib '–enable-bcmath' '–with-bz2' '–enable-zip' '–enable-exif' '–with-gd' '–enable-gd-native-ttf' '–with-freetype-dir=/usr/local' '–with-jpeg-dir=/usr/local' '–with-png-dir' '–with-mhash' '–with-mcrypt=/usr/local' '–enable-mbstring' '–enable-mbregex' '–with-iconv-dir=/usr/local' '–with-curl' '–with-curlwrappers' '–enable-ftp' '–enable-sockets'
3.mysql
cmake -DCMAKE_INSTALL_PREFIX=/opt/mysql/ -DSYSCONFDIR=/etc/my.cnf -DMYSQL_UNIX_ADDR=/opt/mysql/tmp/mysqld.sock -DMYSQL_USER=mysql -DDEFAULT_CHARSET=all -DDEFAULT_CHARSET=utf8 -DDEFAULT_COLLATION=utf8_general_ci -DWITH_INNOBASE_STORAGE_ENGINE=1 -DWITH_ZLIB=/usr/local/lib/ -DWITH_READLINE=1 -DWITH_DATADIR=/opt/mysql/data/ -DWITH_SSL=bundled -DENABLED_LOCAL_INFILE=1-DWITH_READLINE=1 -DWITH_DEBUG=0
make && make install
4. wordpress 설치
5. 설정
이번에 귀 찮 은 일 을 당 한 곳 은 주로 세 가지 가 있다.
1. mysql 초기 화
scripts/mysql_install_db –user mysql –basedir= –datadir=
2. mysql 비밀 번 호 를 설정 하려 면 먼저 실행 해 야 합 니 다.
set old_passwords = 0;
3. nginx 재 작성 규칙
        if (-f $request_filename/index.html){
            rewrite (.*) $1/index.html break;
        }
        if (-f $request_filename/index.php){
            rewrite (.*) $1/index.php;
        }
        if (!-f $request_filename){
            rewrite (.*) /index.php;
        }

이렇게 디 렉 터 리 에 접근 할 때 아래 index. php 에 자동 으로 접근 합 니 다.

좋은 웹페이지 즐겨찾기