Deploy GoLang Application to AWS EC2 Using GitHub Actions

แชร์
ฝัง
  • เผยแพร่เมื่อ 4 พ.ย. 2024

ความคิดเห็น • 17

  • @darshankhatri9625
    @darshankhatri9625 6 หลายเดือนก่อน +1

    Thanks for sharing

  • @vinodhkumargulumuru344
    @vinodhkumargulumuru344 11 วันที่ผ่านมา +1

    Good work

  • @shantipurohit8481
    @shantipurohit8481 6 หลายเดือนก่อน +2

    Good👍

  • @ephraimetuk9670
    @ephraimetuk9670 2 หลายเดือนก่อน +1

    great stuff man! have my appiication up and running in no time

  • @ArchIntelLTD
    @ArchIntelLTD 2 หลายเดือนก่อน

    Thank you very much

  • @rikyfahrian8649
    @rikyfahrian8649 5 หลายเดือนก่อน +1

    cool, it works!

  • @nascodefy
    @nascodefy 4 หลายเดือนก่อน

    hi bro, do we need add secret port, docker username etc?. if that so where to find that in aws

  • @thesci-fishow7295
    @thesci-fishow7295 4 หลายเดือนก่อน +1

    This works seemless
    Thank Youu

  • @lepakshiadoni9812
    @lepakshiadoni9812 6 หลายเดือนก่อน

    This is the error bro
    MERN project
    I am using github actions for cicd and docker file to build and run on docker container its working on ec2 instance when ever I reload page it shows 404 nginx error.

    • @IntegrationNinjas
      @IntegrationNinjas  6 หลายเดือนก่อน

      are you using any different nginx confguration ?

  • @lepakshiadoni9812
    @lepakshiadoni9812 6 หลายเดือนก่อน

    If I want to send screenshot in comments not there options

  • @ephraimetuk9670
    @ephraimetuk9670 2 หลายเดือนก่อน

    hello, this works fine in dev but not in prod. i tried using aws route 53 to forward my IP address to a subdomain but it doesn't accept the port (31.212.134.156:8081) only '31.212.134.156'..how can I work around this ?

    • @IntegrationNinjas
      @IntegrationNinjas  หลายเดือนก่อน

      When using AWS Route 53 to forward traffic to a subdomain, you can't specify a port number (such as 8081). Domain Name System (DNS) services like Route 53 resolve domain names to IP addresses, but they don't handle ports. Since you're using port 8081 for your Go application, you'll need to handle the port forwarding or rerouting in another way.
      Possible Workarounds is using a Reverse Proxy (Nginx or Apache)
      Example:
      server {
      listen 80;
      server_name your-subdomain.example.com;
      location / {
      proxy_pass localhost:8081;
      proxy_set_header Host $host;
      proxy_set_header X-Real-IP $remote_addr;
      proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
      proxy_set_header X-Forwarded-Proto $scheme;
      }
      }

  • @lepakshiadoni9812
    @lepakshiadoni9812 6 หลายเดือนก่อน

    Is there instgarm I'd to chat bro