nginx conf 파일
server {
server_name domain.tld;

root /var/www/codeignitor;
index index.html index.php;

# set expiration of assets to MAX for caching
location ~* \.(ico|css|js|gif|jpe?g|png)(\?[0-9]+)?$ {
expires max;
log_not_found off;
}

location / {
# Check if a file exists, or route it to index.php.
try_files $uri $uri/ /index.php;
}

location ~* \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_split_path_info ^(.+\.php)(.*)$;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}
CodeIgniter application/config/config.php 파일에 수정
$config['base_url']        = "http://domain.tld/";
$config['index_page']         = "";
$config['uri_protocol']        = "REQUEST_URI";
이렇게 하면 index.php 없이 사용하는것이고, 작동은 무난히 잘 됨
출처 : http://wiki.nginx.org/Codeigniter
Posted by Parker Falcon
vsftpd에 SSL을 적용하여 ftpes를 운영하는데, Filezilla에서 GnuTLS error -12: A TLS fatal alert has been received 라는 에러가 뜨고 접속이 안되는 현상을 겪었습니다.
직접적으로 어느 부분이 문제인지는 모르겠는데, 아무튼 Filezilla의 버전을 3.6.0으로 낮추면 정상 작동 합니다. 3.6.0.1이나 3.6.0.2에서 작동이 안되는것을 확인하였습니다.
아직 SSL의 키 파일의 문제인지, vsftpd의 문제인지 Filezilla의 문제인지 GnuTLS의 문제인지는 모르지만, 당장의 해결책은 버전 다운밖에는 안보이네요 :(
Posted by Parker Falcon
페이스북 연동까지 해서 큰 SNS 연동이 iOS 6에 추가되었습니다.
그런데 기본적으로 되는것이 아니라 설정을 해주어야됩니다.
아래 블로그에 간단하게 잘 설명이 되어있습니다. 참고하시면 됩니다 :)
http://gmelon.tistory.com/183
Posted by Parker Falcon