-
※ Comic reader ( ubooquity ) - Qiitaのほうがより使い勝手が良い
zip,rar対応
起動
docker run \
--name=comics \
--restart unless-stopped \
-it -d \
-v $(pwd):/comics \
-p 8080:8080 \
onigoetz/comicsreader
- http://localhost:8080 にアクセスして表示されること
認証 (nginx)
htpasswd
user-name:{PLAIN}pass-w@rd
default.conf
server {
listen 80;
server_name localhost;
location / {
auth_basic "Restricted";
auth_basic_user_file /etc/nginx/htpasswd;
proxy_pass http://192.168.xx.xx:8080;
}
}
docker run -it --restart=always -d \
--name nginx \
-v $(pwd)/nginx/default.conf:/etc/nginx/conf.d/default.conf \
-v $(pwd)/nginx/htpasswd:/etc/nginx/htpasswd \
-p 80:80 \
nginx
- http://localhost にアクセスして表示されること