php Download
Tải về PHP (version) phiên bản Windows
NGINX DOWNLOAD
Tải về NGINX phiên bản Windows
Tải về Git
Tải về Composer
KHỞI ĐỘNG CHẠY
- php-cgi.exe -b 127.0.0.1:9999
- start nginx
- nginx -s stop
Cấu hình Nginx Virutal host
- server {
- listen 443 ssl;
- server_name your_domain.io;
- ssl_certificate localhost/crt.crt;
- ssl_certificate_key localhost/key.key;
- ssl_session_cache shared:SSL:1m;
- ssl_session_timeout 5m;
- ssl_ciphers HIGH:!aNULL:!MD5;
- ssl_prefer_server_ciphers on;
- root html/your_dir/public;
- location / {
- index index.php index.html;
- try_files $uri $uri/ /index.php?_url=$uri&$args;
- }
- location ~ \.php$ {
- fastcgi_pass 127.0.0.1:9999;
- fastcgi_index index.php;
- fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
- include fastcgi_params;
- }
- }