Skip to main content

Notifications

Announcements

No record found.

Finance | Project Operations, Human Resources, ...
Suggested answer

azure deploy github action - GOLANG

Posted on by 5

I'm working on a project and I need to deploy this project to Azure7

I deploy the application using github actions and azure's web services, the deply is successfully performed, but when trying to make a request through the postman using the url that is generated in azure, I get the following error:

The specified CGI application encountered an error and the server terminated the process.

my code is made using Golang programming language.

here are the snippets of my code:

golang:

func main() {
    dbload := Init()
    h := OpenDB(dbload)

    /*port := os.Getenv("HTTP_PLATFORM_PORT")
    if port == "" {
        port = "8080"
    }*/

    router := gin.Default()
    router.POST("/webhook/sendgrid", h.sendgridWeb)
    //router.GET("/ping", ping)
    port := os.Getenv("HTTP_PLATFORM_PORT")

    // default back to 8080 for local dev
    if port == "" {
        port = "8080"
    }

    router.Run("127.0.0.1:" + port)

}



build - web.config:


<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <handlers>
            <add name="httpplatformhandler" path="*" verb="*" modules="httpPlatformHandler" resourceType="Unspecified" />
        </handlers>
        <httpPlatform processPath="D:\home\site\wwwroot\go-app.exe" startupTimeLimit="60">
        </httpPlatform>
    </system.webServer>
</configuration>


.github - workflows- go.yml


name: Build Go app and push to Azure

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

jobs:

  build:
    runs-on: windows-latest
    steps:
    - uses: actions/checkout@v3

    - name: Set up Go
      uses: actions/setup-go@v3
      with:
        go-version: 1.19.4



    - name: Build
      run: go build -o build/go-app.exe -v

    - name: Test
      run: go test
      
    - name: Deploy to Azure
      uses: Azure/webapps-deploy@v2
      with:
        app-name: golang-webhook
        package: build/
        publish-profile: ${{ secrets.azureWebAppPublishProfile }}


my code only has the post method.

the deploy succeeds, but when performing a post request via postman using the link that azure provided me in the web-app , I get the error 502 (bad geteway)-

The specified CGI application encountered an error and the server terminated the process.

  • Suggested answer
    DAnny3211 Profile Picture
    DAnny3211 9,272 Super User 2024 Season 1 on at
    RE: azure deploy github action - GOLANG

    hi

    look this

    learn.microsoft.com/.../error-the-specified-cgi-application-encountered-an.html

    DAniele

  • Martin Dráb Profile Picture
    Martin Dráb 230,214 Most Valuable Professional on at
    RE: azure deploy github action - GOLANG

    Unfortunately, you're in a wrong forum. This whole site is about Microsoft business applications and this particular forum is about an ERP system called Microsoft Dynamics AX.

    You'll need to find another forum. Try Microsoft Q&A or Stack Overflow, to name just a few.

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

December Spotlight Star - Muhammad Affan

Congratulations to a top community star!

Top 10 leaders for November!

Congratulations to our November super stars!

Tips for Writing Effective Suggested Answers

Best practices for providing successful forum answers ✍️

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 291,280 Super User 2024 Season 2

#2
Martin Dráb Profile Picture

Martin Dráb 230,214 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156

Leaderboard

Product updates

Dynamics 365 release plans