28 lines
643 B
YAML
28 lines
643 B
YAML
apiVersion: traefik.io/v1alpha1
|
|
kind: Middleware
|
|
metadata:
|
|
name: cors
|
|
spec:
|
|
headers:
|
|
accessControlAllowCredentials: true
|
|
accessControlAllowHeaders:
|
|
- "Content-Type"
|
|
- "Authorization"
|
|
- "X-Requested-With"
|
|
- "Accept"
|
|
- "Origin"
|
|
- "Cache-Control"
|
|
- "X-File-Name"
|
|
accessControlAllowMethods:
|
|
- "GET"
|
|
- "POST"
|
|
- "PUT"
|
|
- "DELETE"
|
|
- "OPTIONS"
|
|
accessControlAllowOriginList:
|
|
- "http://localhost:1313"
|
|
- "https://*.{{ .cloud.domain }}"
|
|
- "https://{{ .cloud.domain }}"
|
|
accessControlExposeHeaders:
|
|
- "*"
|
|
accessControlMaxAge: 86400 |