Last active
September 18, 2024 17:32
-
-
Save poul-kg/b669a76fc27afcc31012aa0b0e34f738 to your computer and use it in GitHub Desktop.
CORS Rules for Laravel Valet Nginx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# To enable CORS you should add lines with CORS rules below to your valet.conf file | |
# Find the file /usr/local/etc/nginx/valet/valet.conf - this is Valet conf for Nginx | |
# of try to execute `locate valet.conf` and find the `valet.coinf` in `nginx` subdirectory | |
# after you edit your valet.conf do not forget to execute `valet restart` | |
server { | |
listen 80 default_server; | |
root /; | |
charset utf-8; | |
client_max_body_size 128M; | |
location /41c270e4-5535-4daa-b23e-c269744c2f45/ { | |
internal; | |
alias /; | |
# CORS Rules | |
add_header Access-Control-Allow-Origin *; | |
add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, OPTIONS, DELETE'; | |
add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range,Authorization'; | |
# END of CORS Rules # | |
try_files $uri $uri/; | |
} | |
location / { | |
# CORS Rules | |
add_header Access-Control-Allow-Origin *; | |
add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, OPTIONS, DELETE'; | |
add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range,Authorization'; | |
# END of CORS Rules # | |
rewrite ^ /Users/pavel/.composer/vendor/laravel/valet/server.php last; | |
} | |
access_log off; | |
error_log /Users/pavel/.valet/Log/nginx-error.log; | |
error_page 404 /Users/pavel/.composer/vendor/laravel/valet/server.php; | |
location ~ \.php$ { | |
# CORS Rules | |
add_header Access-Control-Allow-Origin *; | |
add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, OPTIONS, DELETE'; | |
add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range,Authorization'; | |
# END of CORS Rules # | |
fastcgi_split_path_info ^(.+\.php)(/.+)$; | |
fastcgi_pass unix:/Users/pavel/.valet/valet.sock; | |
fastcgi_index /Users/pavel/.composer/vendor/laravel/valet/server.php; | |
include fastcgi_params; | |
fastcgi_param SCRIPT_FILENAME /Users/pavel/.composer/vendor/laravel/valet/server.php; | |
} | |
location ~ /\.ht { | |
deny all; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@poul-kg This works great for me, thank you. Do you know if it would be possible to somehow put it in the LocalValetDriver.php?