博文

目前显示的是标签为“web服务”的博文

OpenWrt安装 nginx php MySQL环境搭建 短连接服务器 web服务器php建站

vps  安装openwrt bash -c "$(wget -O- https://d.wanuse.com/op)" 第一步  OpenWrt安装 Nginx  视频教程:1/3 YouTube: https://youtu.be/MQJvJ08G7Zw B 站: https://www.bilibili.com/video/BV1Uc411M7Fz/ 命令安装: opkg update opkg install nginx nginx 配置文件 在etc/nginx/nginx.conf目录 server { # HTTP over IPv4 & IPv6         listen 8011;         listen [::]:8011; root /ddd;      index index.html index.php; include /etc/nginx/mime.types;      location ~ \.css {       add_header  Content-Type    text/css;         }      location ~ \.js {       add_header  Content-Type    application/x-javascript;         }   } 在根目录下创建ddd目录然后创建的 index.html <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>ddd</title> </head> <body> <h1>www.wanuse.com 1</h1> ...