LoginSignup
0
0

More than 3 years have passed since last update.

Comic reader ( onigoetz/comicsreader )

Last updated at Posted at 2020-04-30

zip,rar対応

起動

docker run \
  --name=comics \
  --restart unless-stopped \
  -it -d \
  -v $(pwd):/comics \
  -p 8080:8080 \
  onigoetz/comicsreader

認証 (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
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0