Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

No Login options #19

Closed
Xosten opened this issue Nov 29, 2019 · 4 comments
Closed

No Login options #19

Xosten opened this issue Nov 29, 2019 · 4 comments

Comments

@Xosten
Copy link

Xosten commented Nov 29, 2019

Hi,

I just installed Komga because I like the interface and want to give it a shot. When I arrive on the welcome page, I don't have any option to log-in, and the account tab shows me an empty email field with the possibility to change the password but does nothing special. I don't think it's normal.
Startup logs are below.

Here is more information about my setup:
VPS Running Debian 9
Using Brave browser
Docker & Docker-compose

Docker-compose.yml:

version: '3.3'
services:
  komga:
    image: gotson/komga
    container_name: komga
    volumes:
      - type: bind
        source: /home/myname/docker/Komga/data/config
        target: /config
      - type: bind
        source: /home/myname/docker/Komga/data/books
        target: /books
      - type: bind
        source: /etc/timezone
        target: /etc/timezone
        read_only: true
    expose:
      - 8080
    environment:
      - PUID=1000
      - GUID=1000
      - KOMGA_LIBRARIES_SCAN_DIRECTORY_EXCLUSIONS=#recycle,@eaDir
      - VIRTUAL_HOST=ebooks.*****.****
      - VIRTUAL_PORT=8080
      - LETSENCRYPT_HOST=ebooks.*****.***
      - VIRTUAL_NETWORK=nginx-proxy

    restart: unless-stopped

networks:
   default:
      external:
        name: reverse

When I do a docker-compose up, here is what I get:

komga    |  ____  __.
komga    | |    |/ _|____   _____    _________
komga    | |      < /  _ \ /     \  / ___\__  \
komga    | |    |  (  <_> )  Y Y  \/ /_/  > __ \_
komga    | |____|__ \____/|__|_|  /\___  (____  /
komga    |         \/           \//_____/     \/
komga    |
komga    | Version: 0.8.1
komga    |
komga    | 2019-11-29 17:35:04.534  INFO 1 --- [           main] org.gotson.komga.ApplicationKt           : Starting ApplicationKt on a7ae8b1564e5 with PID 1 (/app started by root in /)
komga    | 2019-11-29 17:35:04.554  INFO 1 --- [           main] org.gotson.komga.ApplicationKt           : The following profiles are active: prod,flyway,docker
komga    | 2019-11-29 17:35:10.544  INFO 1 --- [           main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data repositories in DEFAULT mode.
komga    | 2019-11-29 17:35:10.852  INFO 1 --- [           main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 293ms. Found 5 repository interfaces.
komga    | 2019-11-29 17:35:12.640  INFO 1 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$b1f3c5d4] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
komga    | 2019-11-29 17:35:12.777  INFO 1 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.security.config.annotation.configuration.ObjectPostProcessorConfiguration' of type [org.springframework.security.config.annotation.configuration.ObjectPostProcessorConfiguration$$EnhancerBySpringCGLIB$$4aa18e0e] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
komga    | 2019-11-29 17:35:12.794  INFO 1 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'objectPostProcessor' of type [org.springframework.security.config.annotation.configuration.AutowireBeanFactoryObjectPostProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
komga    | 2019-11-29 17:35:12.807  INFO 1 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@3711c71c' of type [org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
komga    | 2019-11-29 17:35:12.823  INFO 1 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.security.config.annotation.method.configuration.GlobalMethodSecurityConfiguration' of type [org.springframework.security.config.annotation.method.configuration.GlobalMethodSecurityConfiguration$$EnhancerBySpringCGLIB$$6f7630c0] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
komga    | 2019-11-29 17:35:12.839  INFO 1 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'methodSecurityMetadataSource' of type [org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
komga    | 2019-11-29 17:35:13.960  INFO 1 --- [           main] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat initialized with port(s): 8080 (http)
komga    | 2019-11-29 17:35:14.063  INFO 1 --- [           main] o.apache.catalina.core.StandardService   : Starting service [Tomcat]
komga    | 2019-11-29 17:35:14.066  INFO 1 --- [           main] org.apache.catalina.core.StandardEngine  : Starting Servlet engine: [Apache Tomcat/9.0.26]
komga    | 2019-11-29 17:35:14.437  INFO 1 --- [           main] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring embedded WebApplicationContext
komga    | 2019-11-29 17:35:14.441  INFO 1 --- [           main] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 9630 ms
komga    | 2019-11-29 17:35:16.917  INFO 1 --- [           main] o.f.c.internal.license.VersionPrinter    : Flyway Community Edition 5.2.4 by Boxfuse
komga    | 2019-11-29 17:35:16.956  INFO 1 --- [           main] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Starting...
komga    | 2019-11-29 17:35:18.634  INFO 1 --- [           main] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Start completed.
komga    | 2019-11-29 17:35:18.655  INFO 1 --- [           main] o.f.c.internal.database.DatabaseFactory  : Database: jdbc:h2:/config/database.h2 (H2 1.4)
komga    | 2019-11-29 17:35:18.885  WARN 1 --- [           main] o.f.c.internal.database.base.Database    : Flyway upgrade recommended: H2 1.4.199 is newer than this version of Flyway and support has not been tested.
komga    | 2019-11-29 17:35:19.359  INFO 1 --- [           main] o.f.core.internal.command.DbValidate     : Successfully validated 14 migrations (execution time 00:00.216s)
komga    | 2019-11-29 17:35:19.511  INFO 1 --- [           main] o.f.c.i.s.JdbcTableSchemaHistory         : Creating Schema History table: "PUBLIC"."flyway_schema_history"
komga    | 2019-11-29 17:35:20.500  INFO 1 --- [           main] o.f.core.internal.command.DbMigrate      : Current version of schema "PUBLIC": << Empty Schema >>
komga    | 2019-11-29 17:35:20.517  INFO 1 --- [           main] o.f.core.internal.command.DbMigrate      : Migrating schema "PUBLIC" to version 20190819161603 - First Version
komga    | 2019-11-29 17:35:20.861  INFO 1 --- [           main] o.f.core.internal.command.DbMigrate      : Migrating schema "PUBLIC" to version 20190906100609 - regenerate webp covers
komga    | 2019-11-29 17:35:20.911  INFO 1 --- [           main] o.f.core.internal.command.DbMigrate      : Migrating schema "PUBLIC" to version 20190906152334 - reparse pdf files
komga    | 2019-11-29 17:35:20.977  INFO 1 --- [           main] o.f.core.internal.command.DbMigrate      : Migrating schema "PUBLIC" to version 20190907104615 - reparse pdf files
komga    | 2019-11-29 17:35:21.042  INFO 1 --- [           main] o.f.core.internal.command.DbMigrate      : Migrating schema "PUBLIC" to version 20190907143337 - reparse pdf files
komga    | 2019-11-29 17:35:21.109  INFO 1 --- [           main] o.f.core.internal.command.DbMigrate      : Migrating schema "PUBLIC" to version 20190910082852 - rescan series
komga    | 2019-11-29 17:35:21.173  INFO 1 --- [           main] o.f.core.internal.command.DbMigrate      : Migrating schema "PUBLIC" to version 20190926112211 - library entity
komga    | 2019-11-29 17:35:21.388  INFO 1 --- [           main] o.f.core.internal.command.DbMigrate      : Migrating schema "PUBLIC" to version 20190926114415 - create library from series
komga    | 2019-11-29 17:35:21.554  INFO 1 --- [           main] o.f.core.internal.command.DbMigrate      : Migrating schema "PUBLIC" to version 20190927132225 - serie library id not null
komga    | 2019-11-29 17:35:21.626  INFO 1 --- [           main] o.f.core.internal.command.DbMigrate      : Migrating schema "PUBLIC" to version 20191008135338 - rename serie to series
komga    | 2019-11-29 17:35:21.707  INFO 1 --- [           main] o.f.core.internal.command.DbMigrate      : Migrating schema "PUBLIC" to version 20191010153833 - delete thumbnails to force regeneration in jpeg
komga    | 2019-11-29 17:35:21.799  INFO 1 --- [           main] o.f.core.internal.command.DbMigrate      : Migrating schema "PUBLIC" to version 20191014143703 - user entity
komga    | 2019-11-29 17:35:21.885  INFO 1 --- [           main] o.f.core.internal.command.DbMigrate      : Migrating schema "PUBLIC" to version 20191021101906 - user library sharing
komga    | 2019-11-29 17:35:22.008  INFO 1 --- [           main] o.f.core.internal.command.DbMigrate      : Migrating schema "PUBLIC" to version 20191029153618 - book filesize
komga    | 2019-11-29 17:35:22.108  INFO 1 --- [           main] o.f.core.internal.command.DbMigrate      : Successfully applied 14 migrations to schema "PUBLIC" (execution time 00:02.671s)
komga    | 2019-11-29 17:35:22.870  INFO 1 --- [           main] o.hibernate.jpa.internal.util.LogHelper  : HHH000204: Processing PersistenceUnitInfo [
komga    |      name: default
komga    |      ...]
komga    | 2019-11-29 17:35:23.210  INFO 1 --- [           main] org.hibernate.Version                    : HHH000412: Hibernate Core {5.3.12.Final}
komga    | 2019-11-29 17:35:23.222  INFO 1 --- [           main] org.hibernate.cfg.Environment            : HHH000206: hibernate.properties not found
komga    | 2019-11-29 17:35:23.982  INFO 1 --- [           main] o.hibernate.annotations.common.Version   : HCANN000001: Hibernate Commons Annotations {5.0.4.Final}
komga    | 2019-11-29 17:35:24.946  INFO 1 --- [           main] org.hibernate.dialect.Dialect            : HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
komga    | 2019-11-29 17:35:28.878  INFO 1 --- [           main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
komga    | 2019-11-29 17:35:32.047  INFO 1 --- [           main] o.g.k.i.image.ImageConverter             : Supported read formats: [JPG, jpg, tiff, bmp, BMP, bigtiff, gif, GIF, WBMP, png, PNG, BIGTIFF, JPEG, webp, JPEG-LOSSLESS, BigTIFF, tif, TIF, TIFF, wbmp, jpeg, jpeg-lossless]
komga    | 2019-11-29 17:35:32.088  INFO 1 --- [           main] o.g.k.i.image.ImageConverter             : Supported read mediaTypes: [image/vnd.wap.wbmp, image/png, image/x-png, image/jpeg, image/tiff, image/x-tiff, image/bmp, image/gif, image/webp]
komga    | 2019-11-29 17:35:32.090  INFO 1 --- [           main] o.g.k.i.image.ImageConverter             : Supported write formats: [JPG, jpg, tiff, bmp, BMP, gif, GIF, WBMP, png, PNG, JPEG, tif, TIF, TIFF, wbmp, jpeg]
komga    | 2019-11-29 17:35:32.092  INFO 1 --- [           main] o.g.k.i.image.ImageConverter             : Supported write mediaTypes: [image/vnd.wap.wbmp, image/png, image/x-png, image/jpeg, image/tiff, image/x-tiff, image/bmp, image/gif]
komga    | 2019-11-29 17:35:33.870  WARN 1 --- [           main] aWebConfiguration$JpaWebMvcConfiguration : spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
komga    | 2019-11-29 17:35:34.423  INFO 1 --- [           main] o.s.b.a.e.web.EndpointLinksResolver      : Exposing 17 endpoint(s) beneath base path '/actuator'
komga    | 2019-11-29 17:35:34.772  INFO 1 --- [           main] o.s.s.concurrent.ThreadPoolTaskExecutor  : Initializing ExecutorService 'parseBookTaskExecutor'
komga    | 2019-11-29 17:35:34.784  INFO 1 --- [           main] o.s.s.concurrent.ThreadPoolTaskExecutor  : Initializing ExecutorService 'periodicScanTaskExecutor'
komga    | 2019-11-29 17:35:34.786  INFO 1 --- [           main] o.s.s.concurrent.ThreadPoolTaskExecutor  : Initializing ExecutorService 'regenerateThumbnailsTaskExecutor'
komga    | 2019-11-29 17:35:35.121  INFO 1 --- [           main] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: Ant [pattern='/error**'], []
komga    | 2019-11-29 17:35:35.125  INFO 1 --- [           main] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: Ant [pattern='/'], []
komga    | 2019-11-29 17:35:35.127  INFO 1 --- [           main] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: Ant [pattern='/index.html'], []
komga    | 2019-11-29 17:35:35.298  INFO 1 --- [           main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)]
komga    | 2019-11-29 17:35:35.421  INFO 1 --- [           main] o.s.b.a.w.s.WelcomePageHandlerMapping    : Adding welcome page: class path resource [public/index.html]
komga    | 2019-11-29 17:35:35.516  INFO 1 --- [           main] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@198eeb36, org.springframework.security.web.context.SecurityContextPersistenceFilter@676c3745, org.springframework.security.web.header.HeaderWriterFilter@2b8106fa, org.springframework.web.filter.CorsFilter@4690cb47, org.springframework.security.web.authentication.logout.LogoutFilter@542adcfa, org.springframework.security.web.session.ConcurrentSessionFilter@794daa09, org.gotson.komga.infrastructure.security.LoggingBasicAuthFilter@77d80294, org.springframework.security.web.authentication.www.BasicAuthenticationFilter@740ef827, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@78b20c7f, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@6e0fd2dc, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@74940388, org.springframework.security.web.session.SessionManagementFilter@1a18e18d, org.springframework.security.web.access.ExceptionTranslationFilter@1d5e0621, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@72f86029]
komga    | 2019-11-29 17:35:36.909  INFO 1 --- [           main] o.s.s.c.ThreadPoolTaskScheduler          : Initializing ExecutorService 'taskScheduler'
komga    | 2019-11-29 17:35:37.159  INFO 1 --- [           main] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
komga    | 2019-11-29 17:35:37.263  INFO 1 --- [           main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
komga    | 2019-11-29 17:35:37.439  INFO 1 --- [           main] s.d.s.w.s.ApiListingReferenceScanner     : Scanning for api listing references
komga    | 2019-11-29 17:35:38.479  INFO 1 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_1
komga    | 2019-11-29 17:35:38.493  INFO 1 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_2
komga    | 2019-11-29 17:35:38.505  INFO 1 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_3
komga    | 2019-11-29 17:35:38.507  INFO 1 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingDELETE_1
komga    | 2019-11-29 17:35:38.543  INFO 1 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_4
komga    | 2019-11-29 17:35:38.546  INFO 1 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_5
komga    | 2019-11-29 17:35:38.549  INFO 1 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_6
komga    | 2019-11-29 17:35:38.555  INFO 1 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_7
komga    | 2019-11-29 17:35:38.562  INFO 1 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_8
komga    | 2019-11-29 17:35:38.565  INFO 1 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_9
komga    | 2019-11-29 17:35:38.573  INFO 1 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_10
komga    | 2019-11-29 17:35:38.582  INFO 1 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_11
komga    | 2019-11-29 17:35:38.587  INFO 1 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_12
komga    | 2019-11-29 17:35:38.589  INFO 1 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_13
komga    | 2019-11-29 17:35:38.598  INFO 1 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_14
komga    | 2019-11-29 17:35:38.602  INFO 1 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_15
komga    | 2019-11-29 17:35:38.609  INFO 1 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_16
komga    | 2019-11-29 17:35:38.617  INFO 1 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_17
komga    | 2019-11-29 17:35:38.622  INFO 1 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_18
komga    | 2019-11-29 17:35:38.628  INFO 1 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_19
komga    | 2019-11-29 17:35:38.637  INFO 1 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_20
komga    | 2019-11-29 17:35:38.643  INFO 1 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_21
komga    | 2019-11-29 17:35:38.646  INFO 1 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_22
komga    | 2019-11-29 17:35:39.058  INFO 1 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllSeriesUsingGET_1
komga    | 2019-11-29 17:35:39.076  INFO 1 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getBookFileUsingGET_1
komga    | 2019-11-29 17:35:39.137  INFO 1 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestSeriesUsingGET_1
komga    | 2019-11-29 17:35:39.165  INFO 1 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getOneSeriesUsingGET_1
komga    | 2019-11-29 17:35:39.211  INFO 1 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addOneUsingPOST_1
komga    | 2019-11-29 17:35:39.278  INFO 1 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllUsingGET_1
komga    | 2019-11-29 17:35:39.493  INFO 1 --- [           main] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat started on port(s): 8080 (http) with context path ''
komga    | 2019-11-29 17:35:39.501  INFO 1 --- [           main] org.gotson.komga.ApplicationKt           : Started ApplicationKt in 37.14 seconds (JVM running for 38.372)
komga    | 2019-11-29 17:35:39.642  INFO 1 --- [           main] o.h.h.i.QueryTranslatorFactoryInitiator  : HHH000397: Using ASTQueryTranslatorFactory
komga    | 2019-11-29 17:35:39.910  INFO 1 --- [           main] o.g.k.i.scheduler.InitialUserController  : No users exist in database, creating initial users
komga    | 2019-11-29 17:35:40.438  INFO 1 --- [           main] o.g.k.i.s.KomgaUserDetailsLifecycle      : Created user: admin@example.org, roles: [ADMIN]
komga    | 2019-11-29 17:35:40.537  INFO 1 --- [           main] o.g.k.i.scheduler.InitialUserController  : Initial user created. Login: admin@example.org, Password: ********
komga    | 2019-11-29 17:35:40.581  INFO 1 --- [sTaskExecutor-1] o.g.k.domain.service.AsyncOrchestrator   : Regenerate missing thumbnails
komga    | 2019-11-29 17:35:40.586  INFO 1 --- [nTaskExecutor-1] o.g.k.domain.service.AsyncOrchestrator   : Starting periodic libraries scan
komga    | 2019-11-29 17:35:40.624  INFO 1 --- [nTaskExecutor-1] o.g.k.domain.service.AsyncOrchestrator   : No libraries defined, nothing to scan
komga    | 2019-11-29 17:35:40.690  INFO 1 --- [sTaskExecutor-1] o.g.k.domain.service.AsyncOrchestrator   : Generated 0 thumbnails in 00:00:00.000 (virtual: 00:00:00.000)
komga    | 2019-11-29 17:36:22.676  INFO 1 --- [nio-8080-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring DispatcherServlet 'dispatcherServlet'
komga    | 2019-11-29 17:36:22.682  INFO 1 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet        : Initializing Servlet 'dispatcherServlet'
komga    | 2019-11-29 17:36:22.746  INFO 1 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet        : Completed initialization in 62 ms

Thanks in advance,
Best,

@gotson
Copy link
Owner

gotson commented Nov 29, 2019

Hello,

Thanks for giving it a try 🙂

At the moment the authentication is using basic authentication from the browser, there is no login screen yet.

When opening up the browser you should get a native browser popup asking for your username and password (which is generated at startup on the first launch, and shown in the logs).

If you don't get the popup then that's the issue.

Could you try a few things?

  • try with another browser (I use Chrome)
  • check the browser console for any errors

Also, how do you access the web interface? I see in your compose file some parameters for a virtual host, apparently with nginx. Did you try accessing the web interface directly, without using the proxy?

@Xosten
Copy link
Author

Xosten commented Nov 30, 2019

Hello,

Thanks for giving it a try 🙂

At the moment the authentication is using basic authentication from the browser, there is no login screen yet.

When opening up the browser you should get a native browser popup asking for your username and password (which is generated at startup on the first launch, and shown in the logs).

If you don't get the popup then that's the issue.

Could you try a few things?

  • try with another browser (I use Chrome)
  • check the browser console for any errors

Also, how do you access the web interface? I see in your compose file some parameters for a virtual host, apparently with nginx. Did you try accessing the web interface directly, without using the proxy?

Hi,

Thanks for your reply.

I started my container this morning and I don't know why but I got the popup on Brave. Kinda strange...

I have another question. I just added some PDF books in my "/books" volume and they don't appear on the WebClient. I don't think it's normal?

Thanks again, have a nice weekend,
Cheers,

@gotson
Copy link
Owner

gotson commented Nov 30, 2019

Good to know it's working!

You can already manage permissions per user for each library, when logged in as an administrator you can manage it from the settings panel in the users tab.

@gotson gotson closed this as completed Nov 30, 2019
@gotson
Copy link
Owner

gotson commented Nov 30, 2019

I just noticed you asked another question which I didn't answer before closing your issue!

The /books folder of the docker container is mostly here for convenience.

You need to add a library from the web interface and choose the folder you want to index. Once added a scan will start straight away, depending on how many books there are it can take quite some time. Once the books are scanned they should show up in the web interface.

Please open a new issue if you still have issues adding books!

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Sep 7, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants