feat: site institucional completo com design system - Implementa\u00e7\u00e3o do site institucional da Aggios com design system completo incluindo gradientes, tipografia, componentes e se\u00e7\u00f5es de recursos, pre\u00e7os e CTA
This commit is contained in:
12
traefik/dynamic/middleware.yml
Normal file
12
traefik/dynamic/middleware.yml
Normal file
@@ -0,0 +1,12 @@
|
||||
http:
|
||||
middlewares:
|
||||
compress:
|
||||
compress: {}
|
||||
|
||||
security-headers:
|
||||
headers:
|
||||
customResponseHeaders:
|
||||
X-Content-Type-Options: "nosniff"
|
||||
X-Frame-Options: "DENY"
|
||||
X-XSS-Protection: "1; mode=block"
|
||||
Strict-Transport-Security: "max-age=31536000; includeSubDomains"
|
||||
25
traefik/dynamic/rules.yml
Normal file
25
traefik/dynamic/rules.yml
Normal file
@@ -0,0 +1,25 @@
|
||||
# Traefik Dynamic Configuration - Multi-tenant Routing Rules
|
||||
http:
|
||||
middlewares:
|
||||
security-headers:
|
||||
headers:
|
||||
customResponseHeaders:
|
||||
X-Content-Type-Options: nosniff
|
||||
X-Frame-Options: SAMEORIGIN
|
||||
X-XSS-Protection: "1; mode=block"
|
||||
|
||||
routers:
|
||||
# API Backend Router
|
||||
api-router:
|
||||
entryPoints:
|
||||
- web
|
||||
rule: "HostRegexp(`{subdomain:.+}.localhost`) || Host(`api.localhost`)"
|
||||
middlewares:
|
||||
- security-headers
|
||||
service: api-service
|
||||
|
||||
services:
|
||||
api-service:
|
||||
loadBalancer:
|
||||
servers:
|
||||
- url: http://backend:8080
|
||||
18
traefik/traefik.yml
Normal file
18
traefik/traefik.yml
Normal file
@@ -0,0 +1,18 @@
|
||||
# Traefik Static Configuration
|
||||
api:
|
||||
insecure: true
|
||||
dashboard: true
|
||||
debug: false
|
||||
|
||||
entryPoints:
|
||||
web:
|
||||
address: :80
|
||||
|
||||
providers:
|
||||
docker:
|
||||
endpoint: unix:///var/run/docker.sock
|
||||
exposedByDefault: false
|
||||
network: traefik-network
|
||||
|
||||
log:
|
||||
level: INFO
|
||||
Reference in New Issue
Block a user