FusionAuth
    • Home
    • Categories
    • Recent
    • Popular
    • Pricing
    • Contact us
    • Docs
    • Login
    1. Home
    2. dmitry.karpik
    3. Topics
    D
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 4
    • Best 1
    • Controversial 0
    • Groups 0

    Topics created by dmitry.karpik

    • D

      Favicon

      General Discussion
      • • • dmitry.karpik
      5
      1
      Votes
      5
      Posts
      3.9k
      Views

      K

      I found out that these are the ones I need to map, although when I mapped only favicon-128.png
      it worked as well, so not sure completely but to some extends I know that these are the ones we need to map:

      /usr/local/fusionauth/fusionauth-app/web/static/images/favicon-128.png /usr/local/fusionauth/fusionauth-app/web/static/images/favicon-16x16.png /usr/local/fusionauth/fusionauth-app/web/static/images/favicon-32x32.png /usr/local/fusionauth/fusionauth-app/web/static/images/favicon-96x96.png

      But IDK exactly what /usr/local/fusionauth/fusionauth-app/web/static/favicon.png is being used for. Anyhow, I've decided to ignore it for the time being and later (if something happened) maybe will change my mind 😄.

      Dockerfile for those who might be also interested in my FusionAuth version FROM fusionauth/fusionauth-app:1.45.3 USER root # Install curl RUN apt-get update && \ apt-get install -y curl && \ rm -rf /var/lib/apt/lists/* USER fusionauth COPY ./apps/frontend/public/favicon.ico /usr/local/fusionauth/fusionauth-app/web/static/images/favicon-128.png COPY ./apps/frontend/public/favicon.ico /usr/local/fusionauth/fusionauth-app/web/static/images/favicon-16x16.png COPY ./apps/frontend/public/favicon.ico /usr/local/fusionauth/fusionauth-app/web/static/images/favicon-32x32.png COPY ./apps/frontend/public/favicon.ico /usr/local/fusionauth/fusionauth-app/web/static/images/favicon-96x96.png For more details look at my repo & give it a ⭐ if you found it useful.
    • D

      Base endpoint for the FusionAuth application.

      General Discussion
      • • • dmitry.karpik
      3
      0
      Votes
      3
      Posts
      316
      Views

      D

      @dan

      We have two OurApp and FusionAuth applications installed on our server. We are currently using two subdomains.

      For example https://auth.service.com . All requests that come from this subdomain nginx proxies to FusionAuth (on our server).

      https://app.service.com. All requests that come from this subdomain nginx proxies to OurApp.

      But we wouldn't want to have two subdomains. We would like to have one domain for example https://service.com . We would like setup that all requests from https://service.com/auth nginx proxies to the FusionAuth app, and all the others (ex https://service.com/home) to requests to the OurApp.

      The question is, is it possible to specify FusionApp so that all endpoits start with /auth? This way we would be able to use one subdomain and configure nginx to proxy all requests that start with /auth to FusionAuth and the rest to OurApp.

      We use docker of FusionAuth.

      Or maybe there is some other solution?

      Thanks.