seeddms-code/restapi/.htaccess
2020-10-26 15:26:04 +01:00

12 lines
381 B
ApacheConf

RewriteEngine on
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
<Files ~ "^swagger\.yaml">
SetHandler application/x-httpd-php
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
Header set Access-Control-Allow-Methods "GET"
Header set Access-Control-Allow-Headers "X-Requested-With, Content-Type, Accept, Origin, Authorization"
</IfModule>
</Files>