Mercurial HG windows下nginx流媒体编译脚本备忘

来源:互联网 发布:福建网络原创女歌手 编辑:程序博客网 时间:2024/06/05 16:14
进入Nginx主目录下,直行HG命令:
auto/configure --with-cc=cl --builddir=objs --prefix= \--conf-path=conf/nginx.conf --pid-path=logs/nginx.pid \--http-log-path=logs/access.log --error-log-path=logs/error.log \--sbin-path=nginx.exe --http-client-body-temp-path=temp/client_body_temp \--http-proxy-temp-path=temp/proxy_temp \--http-fastcgi-temp-path=temp/fastcgi_temp \--http-scgi-temp-path=temp/scgi_temp \--http-uwsgi-temp-path=temp/uwsgi_temp \--with-cc-opt=-DFD_SETSIZE=1024 --with-pcre=objs/lib/pcre-8.36 \--with-http_flv_module \--with-http_mp4_module \--with-ipv6 \--with-mail \--with-http_realip_module \--with-http_addition_module \--with-http_sub_module \--with-http_dav_module \--with-http_stub_status_module \--with-http_gunzip_module \--with-http_gzip_static_module \--with-http_random_index_module \--with-http_secure_link_module \--with-zlib=objs/lib/zlib-1.2.8 --with-openssl=objs/lib/openssl-1.0.1e \--with-select_module --with-http_ssl_module --add-module=objs/lib/nginx-rtmp-module-win32 \--add-module=objs/lib/nginx_mod_h264_streaming-2.2.7 \--add-module=objs/lib/ngx_http_substitutions_filter_module-master \

0 0