3月 20, 2020 - Linux, 开发笔记    Nginx跨域处理已关闭评论

Nginx跨域处理

1:nginx服务端配置:

方便复制:

#add_header ‘Access-Control-Allow-Origin’  ‘$http_origin’;

#add_header ‘Access-Control-Allow-Credentials’ ‘true’;

#add_header ‘Access-Control-Allow-Methods’ ‘GET,POST,DELETE,PUT,OPTIONS’;

#add_header ‘Access-Control-Allow-Headers’ ‘DNT,web-token,x-secret-key,ap[……]

Read more

3月 19, 2020 - laravel, 开发笔记    laravel获取IP和解析IP位置已关闭评论

laravel获取IP和解析IP位置

1:laravel中可以通过$request->ip()获取到ip.
2:通过第三方包: https://learnku.com/laravel/t/2537/extended-recommendation-geoip-get-ip-geographic-information

composer require torann/geoip

可以解析ip所属的地理位置(国家,地区)

$ip = $request->ip();
$location = GeoIP::getLocation($ip)->toArray();
Log::debug('登录信息:', ['ip[......]

Read more

页面:«1...19202122232425...42»