上一篇elasticsearch安装和启动
1、访问官网进行下载安装文件https://www.elastic.co/cn/elasticsearch/2、启动命令linux:bin/elasticsearchwindows:bin\elasticsearch.bat3、验证是否启动成功curlhttp://localhost:9200返回如下内容表示启动成功
下一篇ngxin代理如何获取用户真实IP
1、修改nginx配置文件在location模块下添加如下配置获取代理前的用户IPproxy_set_headerX-real-ip$remote_addr;修改后配置参考如下:location/{try_files$uri$uri//index.html;proxy_set_headerX-real-ip$remote_addr;}2、java端...