Skip to content

Commit

Permalink
feat: testing CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
JoseAlbDR committed Feb 10, 2024
1 parent a63be95 commit aeada3c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ services:
- 443:443
volumes:
- ./nginx/nginx.conf:/etc/nginx/conf.d/nginx.conf:ro
- ./nginx/passwd/:/etc/nginx/passwd
- ./nginx/letsencrypt/:/etc/letsencrypt/
- ./nginx/certificates/certs/:/etc/nginx/certs
- ./nginx/certificates/private/:/etc/nginx/private
- ./nginx/passwd/:/etc/nginx/passwd:ro
- ./nginx/letsencrypt/:/etc/letsencrypt/:ro
- ./nginx/certificates/certs/:/etc/nginx/certs:ro
- ./nginx/certificates/private/:/etc/nginx/private:ro
- ./nginx/logs/:/var/log/nginx/
2 changes: 1 addition & 1 deletion src/presentation/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export class Server {

//* CI/CD Test
this.app.get('/', (_req: Request, res: Response) => {
res.send('<h1>Probando CI/CD</h1>');
res.send('<h1>Probando CI/CD!!!!!!!!</h1>');
});

//* NotFound Middleware
Expand Down

0 comments on commit aeada3c

Please sign in to comment.