自己电脑做服务器建站
前几天,自己搞了个网站。jsp写的,用的shruts和hibernate框架。
写完之后找了半天终于把这个网站发布到Internet上了。
服务器用的就是自己的电脑,web服务器是tomcat。
1.写好jsp页面,完成网站制作。
2.登录http://www.oray.cn/,注册自己的护照和域名。我用的是免费域名,会比较难看,ssj234.vicp.cc
ssj234.gicp.cc 还有justsj.vicp.cc.
3.下载花生壳客户端,登录,然后会对你的ip和域名进行绑定
4.如果用的是路由器的话 要设置路由器,应该是:DDNS.
地址http://192.168.0.1 账号和密码没改的话是默认,都是admin。不同品牌可能不同。
进入虚拟服务器设置。端口选择http80口。
192.168.0.x x填你的路由内的IP 比如。我的局域网ip设为固定的,是192.168.0.2
填好之后,添加。
5.之后需要修改Tomcat配置文件。
打开tomcat\conf 找到server.xml文件。
找到 <Service name="Catalina">
中间有很多被注释掉的文件
<Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" reloadable="true" URIEncoding="gb2312" />
<Host name="ssj234.gicp.net" appBase="webapps" unpackWARs="true" autoDeploy="true" xmlValidation="false" xmlNamespaceAware="false"> <Context path="" docBase="d:\tomcat\webapps\Jisuan" debug="0"/> </Host>
<welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> </welcome-file-list>