nginx.conif 找到 server 关键字配置 server {listen 80;server_name localhost;#charset koi8-r;#access_log logs/host.access.log main;root C:/phpStudy/PHPTutorial/WWW;location / {try_file...
nginx.conif
找到 server 关键字配置
server { listen 80; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; root "C:/phpStudy/PHPTutorial/WWW"; location / { try_files $uri /index.html; } location ^~ /api/ { proxy_pass http://120.77.146.174:8083; } #location / { # index index.html index.htm index.php l.php; # autoindex off; # }
沃梦达教程
本文标题为:温故而知新 phpstudy 设置 nginx 代理
基础教程推荐
猜你喜欢
- php array分组,PHP中array数组的分组排序 2022-08-01
- laravel 解决多库下的DB::transaction()事务失效问题 2023-03-08
- PHP命名空间简单用法示例 2022-12-01
- PHP中的错误及其处理机制 2023-06-04
- 使用PHP开发留言板功能 2023-03-13
- laravel ORM关联关系中的 with和whereHas用法 2023-03-02
- thinkphp3.2.3框架动态切换多数据库的方法分析 2023-03-19
- 在Laravel中实现使用AJAX动态刷新部分页面 2023-03-02
- PHP实现Redis单据锁以及防止并发重复写入 2022-10-12
- PHP获取MySQL执行sql语句的查询时间方法 2022-11-09