当前位置: 首页 > news >正文

怎么做网站登录界面怎么下别人wordpress模板

怎么做网站登录界面,怎么下别人wordpress模板,公众号打开wordpress,手机网站引导页第十六次7.29 1.静态页面 1安装httpd [rootweb ~]# yum -y install httpd 2.真机访问页面 [rootweb html]# echo 静态html文件 index.html 传入照片再次访问 静态资源#xff0c;根据开发着保存在项目资源目录中的路径访问静态页面的资源 2.Apache 1.安…第十六次7.29 1.静态页面 1安装httpd [rootweb ~]# yum -y install httpd 2.真机访问页面 [rootweb html]# echo 静态html文件 index.html 传入照片再次访问 静态资源根据开发着保存在项目资源目录中的路径访问静态页面的资源 2.Apache 1.安装http [roothttp ~]# yum -y install httpd 2.查看安装情况及安装的资源文件 [roothttp ~]# rpm -ql httpd 3.查看配置文件 [roothttp ~]# vim /etc/httpd/conf/httpd.conf 4.启动httpd服务 [roothttp ~]# systemctl start httpd 5.查看端口 [roothttp ~]# netstat -lnput|grep http tcp6       0     0 :::80                   :::*                   LISTEN     1503/httpd       不能直接停用防火墙可以单独打开端口 查看防⽕墙是否启⽤若启⽤则设置 apache服务可通⾏规则 [roothttp ~]# firewall-cmd --zonepublic --add-servicehttp #设置防火墙方向apache success 打开服务器不会马上生效需要重启或重新加载服务 停用防火墙或者打开指定端口 [roothttp ~]# firewall-cmd --zonepublic -add-port80/tcp --permanet 6.页面写入 [roothttp ~]# touch /var/www/html/index.html [roothttp ~]# mkdir /var/www/html/img/ [roothttp ~]# vim /var/www/html/index.html !doctype html htmlheadmeta charsetutf-8title正方形/titlestylediv{background-color:red;width:120px;height:120px;}   /style/head bodydiv正方形/div  img srcimg/1.jpg/body /html [roothttp ~]# systemctl reload httpd   #重载配置单 7.真机测试 静态文件如果无法在浏览器上访问就一定无法加载在页面上 3. 1.下载nginx [rootnginx ~]# wget https://nginx.org/download/nginx-1.27.0.tar.gz 2.解压 [rootnginx ~]# tar -zxvf nginx-1.27.0.tar.gz 3.开启编译nginx [rootnginx nginx-1.27.0]# cd nginx-1.27.0 [rootnginx ~]# yum -y install pcre-devel openssl-devel make gcc gcc-devel ./configure --prefix/usr/local/nginx --usernginx --groupnginx --with-http_ssl_module --with-http_stub_status_module --with-http_realip_module --with-stream [rootnginx nginx-1.27.0]# make make install [rootnginx nginx-1.27.0]# useradd -s /bin/nologin -M nginx [rootnginx nginx]# cp -r conf/ conf.bak [rootnginx nginx]# ./sbin/nginx [rootnginx nginx]# netstat -lnput|grep nginx tcp       0     0 0.0.0.0:80             0.0.0.0:*               LISTEN     14100/nginx: master ​ 4.开放端口 [rootnginx nginx]# firewall-cmd --zonepublic --add-port80/tcp --permanent success 5.重载防火墙 [rootnginx nginx]# firewall-cmd --reload success 6.启动和关闭nginx服务 [rootnginx nginx]# ln -s /usr/local/nginx/sbin/nginx /usr/bin/ [rootnginx nginx]# ls -l /usr/bin/nginx lrwxrwxrwx. 1 root root 27 7月 29 16:15 /usr/bin/nginx - /usr/local/nginx/sbin/nginx [rootnginx nginx]# nginx   #80端口被占用 nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use) nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use) nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use) nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use) ^C [rootnginx nginx]# nginx -s stop [rootnginx nginx]# netstat -lnput|grep nginx [rootnginx nginx]# nginx [rootnginx nginx]# netstat -lnput|grep nginx   #已启用 tcp       0     0 0.0.0.0:80             0.0.0.0:*               LISTEN     14194/nginx: master ./nginx #启动 ./nginx -s stop #关闭 ./nginx -s reload #重新启动 指令在命令行使用是因为在$PATH目录中能找到这个可执行文件 7.脚本启动nginx服务 [rootnginx nginx]# vim ~/nginx.sh #!/bin/bash /usr/local/sbin/nginx /dev/null netstat -lnput|grep nginx if [ $? -eq 0 ];thenecho ningx正在执行或者是80被占用 ​ fi [rootnginx nginx]# nginx [rootnginx nginx]# source ~/nginx.sh tcp       0     0 0.0.0.0:80             0.0.0.0:*               LISTEN     14232/nginx: master ningx正在执行或者是80被占用 [rootnginx nginx]# nginx -s stop [rootnginx nginx]# source ~/nginx.sh ​ 8. [rootnginx nginx]# vim /usr/lib/systemd/system/nginx.service [Unit] Descriptionnginx Afternetwork.target ​ [Service] Typeforking PIDFile/usr/local/nginx/logs/nginx.pid ExecStart/usr/local/nginx/sbin/nginx ExecReload/usr/local/nginx/sbin/nginx -s reload ExecStop/usr/local/nginx/sbin/nginx -s stop PrivateTmpFlase ​ [Install] WantedBymulti-user.target ​ [rootnginx nginx]# systemctl daemon-reload [rootnginx nginx]# systemctl stop nginx [rootnginx nginx]# systemctl restart nginx ​ 9.真机测试 监控模块 [rootnginx nginx]# vim /usr/local/nginx/conf/nginx.conf   #添加47       location /status{48         stub_status on;49         access_log off;50 }51 [rootnginx nginx]# nginx 虚拟配置
http://www.pierceye.com/news/719475/

相关文章:

  • 网站 管理系统搜索关键词的方法
  • 网站桥页也叫设计班级网站建设
  • 安庆网站建设工作室方维网络科技有限公司
  • 手机网站开发利用流程做网盟行业网站的图片广告的销售
  • 厦门建公司网站怎样自做网站
  • 兰州市网站建设公司无锡上海网站建设
  • 轻骑铃木摩托车官网资源专业网站优化排名
  • 做电影网站赚钱吗中企网站建设
  • 罗源网站建设免费建网站 步骤
  • 哪些网站做简历合适wordpress校园
  • 网站子目录怎么做国内做的比较好的二手网站
  • 短链生成网站html模板免费十个网页
  • 图跃企业网站建设seo提供服务
  • 厦门市建设管理协会网站发帖效果好的网站
  • 手机商城网站制作网页设计与制作的岗位职责
  • 教学网站系统流程图wordpress激活主题
  • 北京房地产网站建设做app还是做微网站好
  • 网站建设的整个流程管理咨询公司网站
  • 长沙网站建设有限公司怎么做网站赚大钱
  • 找做网站页的在哪找沭阳建设局网站
  • 私人做网站有什么用不断加强门户网站建设
  • WordPress简单百度站长插件使用cms建设网站安全吗
  • 响水做网站价格余江网站建设
  • 好的免费个人网站网站建设所需要的材料
  • 南宁本地网站有哪些建筑工程网络组网
  • 如何构建一个网站wordpress更换ssl
  • 做电影网站需要注意什么安徽易企建站
  • 莆田网站格在哪里做网站数据维护
  • 建设的网站别人登录密码做个企业网站多少钱
  • 邢台网站推广怎么做好网站推理