<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[向东博客 专注WEB应用 构架之美 --- 构架之美，在于尽态极妍 | 应用之美，在于药到病除]]></title> 
<link>http://www.jackxiang.com/index.php</link> 
<description><![CDATA[赢在IT，Playin' with IT,Focus on Killer Application,Marketing Meets Technology.]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[向东博客 专注WEB应用 构架之美 --- 构架之美，在于尽态极妍 | 应用之美，在于药到病除]]></copyright>
<item>
<link>http://www.jackxiang.com/post//</link>
<title><![CDATA[[实践OK]整合freeBSD下nginx+php+mysql安装方案（ports安装）]]></title> 
<author>jack &lt;xdy108@126.com&gt;</author>
<category><![CDATA[Unix/LinuxC技术]]></category>
<pubDate>Wed, 27 Jan 2016 03:19:28 +0000</pubDate> 
<guid>http://www.jackxiang.com/post//</guid> 
<description>
<![CDATA[ 
	安装Nginx：<br/><br/>wget --no-check-certificate http://ftp.exim.llorien.org/pcre/pcre-8.39.tar.bz2<br/>wget --no-check-certificate http://nginx.org/download/nginx-1.11.6.tar.gz<br/>tar xf pcre-8.39.tar.bz2<br/>tar xf nginx-1.11.6.tar.gz<br/>cd nginx-1.11.6/<br/><br/>vi auto/lib/openssl/conf<br/><br/># 将下面的内容修改<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CORE_INCS=&quot;$CORE_INCS $OPENSSL/.openssl/include&quot;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CORE_DEPS=&quot;$CORE_DEPS $OPENSSL/.openssl/include/openssl/ssl.h&quot;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CORE_LIBS=&quot;$CORE_LIBS $OPENSSL/.openssl/lib/libssl.a&quot;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CORE_LIBS=&quot;$CORE_LIBS $OPENSSL/.openssl/lib/libcrypto.a&quot;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CORE_LIBS=&quot;$CORE_LIBS $NGX_LIBDL&quot;<br/># 为<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CORE_INCS=&quot;$CORE_INCS $OPENSSL/include&quot;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CORE_DEPS=&quot;$CORE_DEPS $OPENSSL/ssl.h&quot;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CORE_LIBS=&quot;$CORE_LIBS /usr/local/lib/libssl.a&quot;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CORE_LIBS=&quot;$CORE_LIBS /usr/local/lib/libcrypto.a&quot;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CORE_LIBS=&quot;$CORE_LIBS $NGX_LIBDL&quot;<br/>pkg install google-perftools <br/>./configure --prefix=/usr/local/nginx --user=www --group=www --with-http_gzip_static_module --with-http_v2_module --with-http_realip_module --with-google_perftools_module --with-http_stub_status_module --with-http_sub_module --with-http_flv_module --with-http_ssl_module --with-openssl=/usr/local/include/openssl --with-pcre=../pcre-8.39 --with-pcre-jit&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>gmake -j `sysctl hw.ncpu &#124; wc -w`<br/>gmake install -j `sysctl hw.ncpu &#124; wc -w`<br/><br/>=========================From:https://my.oschina.net/ericliu77/blog/801539=================================<br/><br/><br/><br/><br/>php5.6.17是最后一个php5版本，后来就到php7了。<br/><br/>FreeBSD 10系统编译安装Nginx, PHP, MariaDB环境<br/>可惜的是 FreeBSD 10 用 Clang 替代 gcc 为默认编译器,这让用惯了 gcc 的同学们很不爽:<br/>http://www.php1.cn/article/62718.html<br/><br/>整合freeBSD下nginx+php+mysql安装方案（ports安装）:<br/>http://blog.csdn.net/shaobingj126/article/details/5620702<br/><br/>freebsd+nginx+php+mysql+zend+phpmyadmin+系统优化+防止ddos +傻瓜式ports安装法:<br/>http://blog.163.com/023_dns/blog/static/11872736620091029306126/<br/>http://blog.163.com/dyc_888@126/blog/static/100443351201021910057781/<br/><br/>FreeBSD下NGINX 1.8+PHP5.6 +PERL 5.20 +Mysql 5.6＋FTP 环境搭建与优化：<br/>http://www.douban.com/note/524153021/<br/><br/><br/>在FreeBSD上配置Apache+SSL：<br/>http://wenku.baidu.com/link?url=Wp51oiSGtk7yQF2x_fqI7g9vDWylT218Rs2q2rRWs-WJJwSbyMepcmclmuKCu9QZ4UVkiXCAkemZfj4CIQNT7OU9L3uvEuQgeNngeqfJ78e<br/><br/><br/>This post will describe how to install and configure Apache, MySQL, PHP and phpMyAdmin on FreeBSD for basic local web development：<br/>https://www.iceflatline.com/2011/11/how-to-install-apache-mysql-php-and-phpmyadmin-on-freebsd/<br/><br/><br/>FreeBSD下Nginx配置ssl-自建CA给网站签发SSL证书 [原创]:<br/>http://www.92csz.com/42/494.html<br/><br/>FreeBSD下防火墙设置:<br/>http://blog.163.com/caizhongyi@126/blog/static/3391683920102594249139/<br/><br/> X3.2针对PHP7的兼容版本-测试ing:<br/>https://github.com/branchzero/discuz-x32-php7/releases<br/><br/><br/>FreeBSD+Rsync文件同步 ：<br/>http://blog.chinaunix.net/uid-20496698-id-1664047.html<br/>http://blog.chinaunix.net/uid-20496698-id-1664047.html<br/><br/>How to Install Official PHP 7 release on FreeBSD 10.2:<br/>http://rasyid.net/2015/12/05/install-official-php-7-release-on-freebsd-10-2/<br/>http://rasyid.net/2015/01/23/how-to-install-phpng-aka-php7-on-freebsd-10/<br/><br/>内容管理框架 ThinkCMFX 2.0.0 发布，支持 PHP7：<br/>http://www.oschina.net/news/68813/thinkcmfx-2-0-0<br/>http://demo.thinkcmf.com/<br/>
]]>
</description>
</item><item>
<link>http://www.jackxiang.com/post//#blogcomment</link>
<title><![CDATA[[评论] [实践OK]整合freeBSD下nginx+php+mysql安装方案（ports安装）]]></title> 
<author> &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate> 
<guid>http://www.jackxiang.com/post//#blogcomment</guid> 
<description>
<![CDATA[ 
	
]]>
</description>
</item>
</channel>
</rss>