windows2個本地專案curl訪問
1.nginx/conf/vhosts.conf新增fastcgi_pass埠
server {
listen 80;
server_name www.myreport.com ;
root "D:\phpStudy\PHPTutorial\WWW\php/report\code\public";
location / {
index index.html index.htm index.php;
#autoindex on;
}
location ~ \.php(.*)$ {
fastcgi_pass 127.0.0.1:9001;
fastcgi_index index.php;
fastcgi_split_path_info ^((?U).+\.php)(/?.+)$;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
include fastcgi_params;
}
}
2.git bash命令列開啟phpcgi
/d/phpStudy/PHPTutorial/php/php-5.6.27-nts/php-cgi.exe -b 127.0.0.1:9001 -c php.ini
相關文章
- 【訪問本地專案,localhosthost可以,本地ip不可以】localhost
- 記錄 laradock下 guzzle 無法訪問本地專案
- 輕鬆讓別人訪問到自己本地專案
- Vue——Vue專案本地伺服器設定既能localhost訪問又能手機IP訪問Vue伺服器localhost
- nginx 專案配置 https 訪問NginxHTTP
- Spring Boot專案部署伺服器 本地正常 遠端無法訪問問題排錯Spring Boot伺服器
- Nginx配置VUE專案Https訪問NginxVueHTTP
- 手機訪問電腦本地多個網站網站
- 關於vue專案本地執行以後,輸入本機ip不能訪問的問題Vue
- 外網訪問本地sqlserverSQLServer
- 本地Tomcat外網訪問Tomcat
- 如何在本地修改Hosts檔案設定域名訪問?
- es:curl訪問es時返回為空(elasticsearch 8.14.2)Elasticsearch
- 關於idea部署本地專案的問題Idea
- 訪問本地的公網ip
- 本地站點無法訪問
- 本地網站外網訪問網站
- Flutter 入門-本地訪問-MethodChannelFlutter
- tomcat配置訪問專案時不需要加專案名稱Tomcat
- 如何將一個本地專案推到github上Github
- springboot 專案引入tk或者jpa 訪問報錯Spring Boot
- 解決境內無法訪問Vercel專案
- 訪問JavaWeb專案沒有返回任何內容JavaWeb
- 同一臺伺服器部署多個專案,實現不同域名訪問伺服器
- 使用 SAP ABAP 封裝的 Office Integration class 訪問本地 Excel 檔案封裝Excel
- python--django專案如何設定用自己的iP地址訪問專案PythonDjango
- 前端使用Nuxt框架,配置本地https訪問前端UX框架HTTP
- Holer實現外網訪問本地MySQLMySql
- Holer實現外網訪問本地NginxNginx
- Holer實現外網訪問本地SpringBootSpring Boot
- Holer實現外網訪問本地WampServerServer
- Holer實現外網訪問本地ElasticsearchElasticsearch
- 寶塔https佈置dcat專案admin訪問403HTTP
- Springboot專案啟動後訪問Controller報錯404Spring BootController
- Java web 專案,在網頁url地址訪問名JavaWeb網頁
- 【Thinkphp6】api介面使用apipost等工具可以正常訪問,專案中訪問報跨域問題PHPAPI跨域
- 個人專案相關問題
- php的curl選擇其他網路卡的ip來訪問網站PHP網站