무제한 3G 요금을 사용하고 있는 와이프에게 이동중에 무료함을 달래줄 스트리밍 서버를 구축해서 관련된 내용을 간단히 정리해보았다.
server {
charset utf-8;
server_name xxx.xxx.xxx.xxx;
root /xxx/stream;
location / {
auth_basic "Restricted";
auth_basic_user_file /xxx/xxx/.htpasswd;
autoindex on;
autoindex_exact_size on;
autoindex_localtime on;
}
location ~ ^/(.*\.mp4)$ {
}
}