nginx

SSL

国産FTPソフトの代表格「FFFTP」が開発終了 - GIGAZINE nginx で ssl 設定をする : dogmap.jp ウノウラボ by Zynga Japan: Tips for nginx ModulesJa HttpSslModule

インデックス表示

nginx設定の検証(Index、Autoindex) location /test/ { autoindex on; autoindex_exact_size off; autoindex_localtime on; }

設定

CentOS5.5にnginxをインストールする(1.1.0)でビルドした設定 # nginx -V 2>&1 | perl -pe 's/ (--)/\n$1/g' nginx: nginx version: nginx/1.1.0 nginx: TLS SNI support disabled nginx: configure arguments: --user=nginx --group=nginx --prefix=/usr/…

CGIを使えるようにする

nginxはそのままだとCGI使えない… それfastcgiでなんとかするよ! # yum install perl-FCGI # rpm -q perl-FCGI perl-FCGI-0.68-1.el5.rf /usr/bin/fastcgi-wrapper.pl 作成 /etc/rc.d/init.d/perl-fastcgi 作成 ポイント Error: No such CGI app - xxxxx ma…