fix: remover ssh key
Some checks failed
Deploy ASP.NET MVC to OCI / build-and-deploy (push) Failing after 7m21s

This commit is contained in:
Ricardo Carneiro 2025-06-02 23:11:53 -03:00
parent 1d8da8163c
commit 3e764dd685
2 changed files with 46 additions and 8 deletions

View File

@ -33,8 +33,9 @@ jobs:
uses: appleboy/ssh-action@v1.0.3 uses: appleboy/ssh-action@v1.0.3
with: with:
host: 129.146.116.218 host: 129.146.116.218
username: ${{ secrets.SSH_USERNAME }} # username: ${{ secrets.SSH_USERNAME }}
key: ${{ secrets.SSH_PRIVATE_KEY }} # key: ${{ secrets.SSH_PRIVATE_KEY }}
username: ubuntu
port: 22 port: 22
script: | script: |
# Para qualquer container que esteja usando a porta 80 # Para qualquer container que esteja usando a porta 80

View File

@ -1,18 +1,55 @@
{ {
// Exemplo 1: Conversor de Maiúsculas/Minúsculas
"Converter": {
"Type": "text-case-sentence",
"Name": "Maiúsculas para 1a. minúsculas"
},
// Exemplo 2: Conversor CSV para JSON
// "Converter": {
// "Type": "csv-json",
// "Name": "Conversor CSV para JSON"
// },
// Exemplo 3: Conversor OCR (Imagem para Texto)
// "Converter": {
// "Type": "image-ocr",
// "Name": "Conversor de Imagem para Texto"
// },
"ConnectionStrings": { "ConnectionStrings": {
"MongoDB": "mongodb+srv://usuario:senha@cluster.mongodb.net/text_case_converter_db?retryWrites=true&w=majority" "MongoDB": "mongodb://admin:c4rn31r0@k3sw2:27017,k3ss1:27017/?authSource=admin"
},
"MongoDB": {
"DatabaseName": "text_case_converter_db"
},
"TextConversionApi": {
"BaseUrl": "https://localhost:7071"
}, },
"SEO": { "SEO": {
"DefaultDomain": "https://maiusculasminusculas.com", "DefaultDomain": "https://maiusculasminusculas.com",
"GoogleTagManagerId": "GTM-REAL123", "DefaultSiteName": "Maiúsculas para 1a. minúsculas online",
"GoogleAnalyticsId": "GA-REAL456" "GoogleTagManagerId": "GTM-XXXXXXX",
"GoogleAnalyticsId": "GA-XXXXXXXX"
}, },
"Logging": { "Logging": {
"LogLevel": { "LogLevel": {
"Default": "Warning", "Default": "Information",
"Microsoft.AspNetCore": "Warning" "Microsoft.AspNetCore": "Warning"
} }
},
"GoogleAds": {
"PublisherID": "pub-3475956393038764",
"Enabled": true,
"TestMode": false,
"Slots": {
"BannerTop": "SEU_SLOT_ID_1",
"RectanglePre": "SEU_SLOT_ID_2"
} }
},
"AllowedHosts": "*"
} }