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

    rafal.glebocki

    @rafal.glebocki

    1
    Reputation
    1
    Profile views
    4
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    rafal.glebocki Unfollow Follow

    Best posts made by rafal.glebocki

    • Fusionauth on azure app service for containers

      Hey, I want to host fusionauth from docker image on azure app service for containers. I have adjusted the docker-compose file. Here it is:

      version: '3'
      
      services:
        fusionauth:
          image: fusionauth/fusionauth-app:latest
          environment:
            DATABASE_URL: jdbc:postgresql://***.postgres.database.azure.com:5432/fusionauth
            DATABASE_ROOT_USERNAME: postgres
            DATABASE_ROOT_PASSWORD: ***
            DATABASE_USERNAME: fusionauth
            DATABASE_PASSWORD: ***
            FUSIONAUTH_APP_MEMORY: 512M
            FUSIONAUTH_APP_RUNTIME_MODE: development
            FUSIONAUTH_APP_URL: http://fusionauth:9011
            SEARCH_TYPE: database
            FUSIONAUTH_APP_SILENT_MODE: false
      
          restart: unless-stopped
          ports:
            - 80:9011
            - 443:9011
          volumes:
            - fusionauth_config:/usr/local/fusionauth/config
      
      volumes:
        fusionauth_config:
      

      I'm able to log in but getting this proxy warning. 3f510561-21be-4d4e-b39e-ee0724a3c14e-image.png

      Does anybody is familiar with hosting it on azure and can advice how I can tune in the app service configuration for it to work? I have read, that we need to route all traffic through proxy, is there other way? What is the best setup for this in the Azure environment?

      Thanks,
      Rafal

      posted in Q&A
      R
      rafal.glebocki

    Latest posts made by rafal.glebocki

    • Upgrading to newest version from 1.45

      Hey,

      I am runnign fusionauth in azure app service for containers, using azure database for postgreSQL. I am using image

      fusionauth/fusionauth-app:1.45.1
      

      I want to update to newest version. So I will delete the tag from image, are there any other steps I need to perform to update to newest version?

      posted in Q&A
      R
      rafal.glebocki
    • RE: Fusionauth on azure app service for containers

      Thanks @dan, indeed I routed traffic through application gateway and it worked out 🙂

      posted in Q&A
      R
      rafal.glebocki
    • Fusionauth on azure app service for containers

      Hey, I want to host fusionauth from docker image on azure app service for containers. I have adjusted the docker-compose file. Here it is:

      version: '3'
      
      services:
        fusionauth:
          image: fusionauth/fusionauth-app:latest
          environment:
            DATABASE_URL: jdbc:postgresql://***.postgres.database.azure.com:5432/fusionauth
            DATABASE_ROOT_USERNAME: postgres
            DATABASE_ROOT_PASSWORD: ***
            DATABASE_USERNAME: fusionauth
            DATABASE_PASSWORD: ***
            FUSIONAUTH_APP_MEMORY: 512M
            FUSIONAUTH_APP_RUNTIME_MODE: development
            FUSIONAUTH_APP_URL: http://fusionauth:9011
            SEARCH_TYPE: database
            FUSIONAUTH_APP_SILENT_MODE: false
      
          restart: unless-stopped
          ports:
            - 80:9011
            - 443:9011
          volumes:
            - fusionauth_config:/usr/local/fusionauth/config
      
      volumes:
        fusionauth_config:
      

      I'm able to log in but getting this proxy warning. 3f510561-21be-4d4e-b39e-ee0724a3c14e-image.png

      Does anybody is familiar with hosting it on azure and can advice how I can tune in the app service configuration for it to work? I have read, that we need to route all traffic through proxy, is there other way? What is the best setup for this in the Azure environment?

      Thanks,
      Rafal

      posted in Q&A
      R
      rafal.glebocki
    • Fusionauth on azure app service for containers

      Hey,

      I want to deploy fusionauth docker image on azure app service. I have adjusted slightly the docker-compose file and I'm using external postgresql server.
      Here is a docker-compose I'm deploying.

      posted in Q&A
      R
      rafal.glebocki