묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
nginx 제로보드(XE) 설정방법 부탁드리겠습니다.
2013.08.15 00:42
안녕하세요.
몇일째 우분투 12.04 서버 연동 문제로 허덕이고 있습니다.
nginx - php, phpmyadmin (연동), nginx-mysql(연동)은 완료하였습니다.
/etc/nginx/conf.d/default.conf 설정으로
/usr/share에 xe폴더를 두었고,
location /xe {
root /usr/share/;
index index.php index.html index.htm;
location ~ ^/xe/(.+\.php)$ {
try_files $uri =404;
root /usr/share/;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /usr/share$fastcgi_script_name;
include fastcgi_params;
}
}
설정으로 127.0.0.1/xe는 로그인이 됩니다.
문제는 모듈, 위젯을 설치해도 인식이 되지 않습니다.
아마 nginx와 xe 설정부분에서 건드려야 될거 같습니다. (정말 노력해서 찾고, 또 찾았습니다)
rewrite부분은 아직 해보진 못했지만, 이 부분이 먼저 해결해야 될거 같아 질문 드립니다.