<?xml version="1.0" encoding="UTF-8"?> <rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
> <channel><title>Frequently Asked Questions About Linux / UNIX &#187; /usr/local/etc/nginx/nginx.conf</title> <atom:link href="http://www.cyberciti.biz/faq/tag/usrlocaletcnginxnginxconf/feed/" rel="self" type="application/rss+xml" /><link>http://www.cyberciti.biz/faq</link> <description>Every answer asks a more beautiful question.</description> <lastBuildDate>Fri, 03 Feb 2012 22:38:32 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>WordPress Rename Image URL For a CDN Usage</title><link>http://www.cyberciti.biz/faq/wordpress-offloading-old-static-images-urls-to-cdn-urls/</link> <comments>http://www.cyberciti.biz/faq/wordpress-offloading-old-static-images-urls-to-cdn-urls/#comments</comments> <pubDate>Sat, 20 Nov 2010 20:41:47 +0000</pubDate> <dc:creator>Vivek Gite</dc:creator> <category><![CDATA[Apache]]></category> <category><![CDATA[Lighttpd]]></category> <category><![CDATA[Nginx]]></category> <category><![CDATA[PHP]]></category> <category><![CDATA[/etc/httpd/conf/httpd.conf]]></category> <category><![CDATA[/etc/lighttpd/lighttpd.conf]]></category> <category><![CDATA[/usr/local/etc/nginx/nginx.conf]]></category> <category><![CDATA[Apache HTTP 301 redirect]]></category> <category><![CDATA[assets]]></category> <category><![CDATA[backup database]]></category> <category><![CDATA[blog]]></category> <category><![CDATA[cdn]]></category> <category><![CDATA[Content Delivery Network]]></category> <category><![CDATA[expression search]]></category> <category><![CDATA[HTTPD HTTP 301 redirect]]></category> <category><![CDATA[Lighttpd HTTP 301 redirect]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[MySQL]]></category> <category><![CDATA[mysqldump]]></category> <category><![CDATA[mysqldump command]]></category> <category><![CDATA[nginx HTTP 301 redirect]]></category> <category><![CDATA[php code]]></category> <category><![CDATA[regular expression]]></category> <category><![CDATA[regular expressions]]></category> <category><![CDATA[static images]]></category> <category><![CDATA[supercache]]></category> <category><![CDATA[tar command]]></category> <category><![CDATA[UNIX]]></category> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=9427</guid> <description><![CDATA[<div
style='float:right;margin-top:0px;margin-left:5px;'><a
href='http://www.cyberciti.biz/faq/category/php/' title='See all PHP related FAQ'><img
src='http://files.cyberciti.biz/cbzcache/3rdparty/php-logo.png' border='0' /></a></div> <span
class="drop_cap">R</span>ecently, we moved all our static assets to a <a
href="http://www.cyberciti.biz/tips/wordpress-cdn-content-delivery-network-configuration.html">CDN as described here</a>. However, we have over 8000+ old blog posts and we need to point static images url to our CDN account hosted at http://MyACCOUNT.cloudfront.net/images/ folder. How do I rename all image urls stored in wordpress posts? How do I offload static images to a CDN urls under Wordpress?]]></description> <wfw:commentRss>http://www.cyberciti.biz/faq/wordpress-offloading-old-static-images-urls-to-cdn-urls/feed/</wfw:commentRss> <slash:comments>23</slash:comments> </item> <item><title>Nginx: Custom Error 403 Page Not Working with IP Deny Configuration</title><link>http://www.cyberciti.biz/faq/unix-linux-nginx-custom-error-403-page-configuration/</link> <comments>http://www.cyberciti.biz/faq/unix-linux-nginx-custom-error-403-page-configuration/#comments</comments> <pubDate>Wed, 14 Apr 2010 09:10:44 +0000</pubDate> <dc:creator>Vivek Gite</dc:creator> <category><![CDATA[Nginx]]></category> <category><![CDATA[/usr/local/etc/nginx/nginx.conf]]></category> <category><![CDATA[custom error]]></category> <category><![CDATA[error 403]]></category> <category><![CDATA[error message]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[reload nginx]]></category> <category><![CDATA[UNIX]]></category> <category><![CDATA[web server]]></category> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=7192</guid> <description><![CDATA[<div
style='float:right;margin-top:0px;margin-left:5px;'><a
href='http://www.cyberciti.biz/faq/category/nginx/' title='See all Nginx webserver related FAQ'><img
src='http://files.cyberciti.biz/cbzcache/3rdparty/nginx.gif' border='0' /></a></div> <span
class="drop_cap">I</span> <a
href="http://www.cyberciti.biz/faq/linux-unix-nginx-access-control-howto/">block or deny access based on the host name or IP address</a> of the client visiting website under nginx web server. I want to display customized e403.html error page, but it doesn't appear to be working. Nginx always displays the built-in, hardcoded "403 Forbidden" error message. Here is my configuration:<pre>.....
  ...
 deny 1.2.3.4;
 deny 91.212.45.0/24;
 deny 91.212.65.0/24;
 .....
 ...
 error_page 403 /e403.html;
        location = /e403.html {
           root   html;
       }
</pre>How do I fix this problem and display custom error 403 page under nginx server?]]></description> <wfw:commentRss>http://www.cyberciti.biz/faq/unix-linux-nginx-custom-error-403-page-configuration/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Nginx Force (Redirect) WWW.Domain.COM To Domain.COM</title><link>http://www.cyberciti.biz/faq/nginx-redirect-www-example-com-to-example-com/</link> <comments>http://www.cyberciti.biz/faq/nginx-redirect-www-example-com-to-example-com/#comments</comments> <pubDate>Wed, 13 Jan 2010 08:11:36 +0000</pubDate> <dc:creator>Vivek Gite</dc:creator> <category><![CDATA[Nginx]]></category> <category><![CDATA[/etc/nginx/nginx.conf]]></category> <category><![CDATA[/usr/local/etc/nginx/nginx.conf]]></category> <category><![CDATA[/usr/local/nginx/conf/nginx.conf]]></category> <category><![CDATA[/usr/local/nginx/sbin/nginx -s reload]]></category> <category><![CDATA[if someone comes with no www redirect it to www.domain.com]]></category> <category><![CDATA[if someone comes with no www redirect it to www.domain.com nginx]]></category> <category><![CDATA[nginx force www]]></category> <category><![CDATA[nginx forced redirect]]></category> <category><![CDATA[nginx redirect]]></category> <category><![CDATA[nginx redirect url configuration]]></category> <category><![CDATA[nginx redirect www]]></category> <category><![CDATA[nginx url.redirect]]></category> <category><![CDATA[redirect domain.com to www.domain.com nginx]]></category> <category><![CDATA[reload nginx]]></category> <category><![CDATA[restart nginx]]></category> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=6313</guid> <description><![CDATA[<div
style='float:right;margin-top:0px;margin-left:5px;'><a
href='http://www.cyberciti.biz/faq/category/nginx/' title='See all Nginx webserver related FAQ'><img
src='http://files.cyberciti.biz/cbzcache/3rdparty/nginx.gif' border='0' /></a></div> <span
class="drop_cap">I</span> know <a
href="http://www.cyberciti.biz/tips/lighttpd-redirect-www-domaincom-to-domain-com.html">how to force and redirect</a> www.example.com to example.com under Lighttpd web server. How do I force nginx web server to redirect www.example.com/page/1/2/3 to example.com/page/1/2/3?]]></description> <wfw:commentRss>http://www.cyberciti.biz/faq/nginx-redirect-www-example-com-to-example-com/feed/</wfw:commentRss> <slash:comments>6</slash:comments> </item> <item><title>Nginx Block And Deny IP Address OR Network Subnets</title><link>http://www.cyberciti.biz/faq/linux-unix-nginx-access-control-howto/</link> <comments>http://www.cyberciti.biz/faq/linux-unix-nginx-access-control-howto/#comments</comments> <pubDate>Wed, 13 Jan 2010 05:05:50 +0000</pubDate> <dc:creator>Vivek Gite</dc:creator> <category><![CDATA[Nginx]]></category> <category><![CDATA[Security]]></category> <category><![CDATA[/etc/nginx/nginx.conf]]></category> <category><![CDATA[/usr/local/etc/nginx/nginx.conf]]></category> <category><![CDATA[/usr/local/nginx/conf/nginx.conf]]></category> <category><![CDATA[/usr/local/nginx/sbin/nginx -s reload]]></category> <category><![CDATA[centos nginx]]></category> <category><![CDATA[configuration file]]></category> <category><![CDATA[error 403]]></category> <category><![CDATA[error messages]]></category> <category><![CDATA[fedora nginx]]></category> <category><![CDATA[freebsd nginx]]></category> <category><![CDATA[html error]]></category> <category><![CDATA[nginx access control]]></category> <category><![CDATA[nginx allow all; nginx block IP]]></category> <category><![CDATA[nginx block CIDR]]></category> <category><![CDATA[nginx block subnet]]></category> <category><![CDATA[nginx deny all;]]></category> <category><![CDATA[spammers]]></category> <category><![CDATA[web server]]></category> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=6283</guid> <description><![CDATA[<div
style='float:right;margin-top:0px;margin-left:5px;'><a
href='http://www.cyberciti.biz/faq/category/nginx/' title='See all Nginx webserver related FAQ'><img
src='http://files.cyberciti.biz/cbzcache/3rdparty/nginx.gif' border='0' /></a></div> <span
class="drop_cap">H</span>ow do I block or deny access based on the host name or IP address of the client visiting website under nginx web server?]]></description> <wfw:commentRss>http://www.cyberciti.biz/faq/linux-unix-nginx-access-control-howto/feed/</wfw:commentRss> <slash:comments>9</slash:comments> </item> <item><title>FreeBSD: Nginx FastCGI PHP Configuration</title><link>http://www.cyberciti.biz/faq/freebsd-configure-nginx-php-fastcgi-server/</link> <comments>http://www.cyberciti.biz/faq/freebsd-configure-nginx-php-fastcgi-server/#comments</comments> <pubDate>Thu, 09 Oct 2008 20:17:01 +0000</pubDate> <dc:creator>Vivek Gite</dc:creator> <category><![CDATA[FreeBSD]]></category> <category><![CDATA[Lighttpd]]></category> <category><![CDATA[Networking]]></category> <category><![CDATA[Nginx]]></category> <category><![CDATA[Package management]]></category> <category><![CDATA[UNIX]]></category> <category><![CDATA[/usr/local/bin/spawn-fcgi]]></category> <category><![CDATA[/usr/local/etc/nginx/nginx.conf]]></category> <category><![CDATA[fastcgi]]></category> <category><![CDATA[freebsd nginx]]></category> <category><![CDATA[freebsd php fastcgi]]></category> <category><![CDATA[freebsd php5 fastcgi]]></category> <category><![CDATA[nginx php configuration]]></category> <category><![CDATA[php script]]></category> <category><![CDATA[restart nginx]]></category> <category><![CDATA[spawn]]></category> <category><![CDATA[start nginx]]></category> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=2100</guid> <description><![CDATA[<div
style='float:right;margin-top:0px;margin-left:5px;'><a
href='http://www.cyberciti.biz/faq/category/nginx/' title='See all Nginx webserver related FAQ'><img
src='http://files.cyberciti.biz/cbzcache/3rdparty/nginx.gif' border='0' /></a></div> <span
style='color: rgb(255, 0, 0);'>Q.</span> How do I configure PHP as FastCGI under FreeBSD Nginx webserver?]]></description> <wfw:commentRss>http://www.cyberciti.biz/faq/freebsd-configure-nginx-php-fastcgi-server/feed/</wfw:commentRss> <slash:comments>10</slash:comments> </item> <item><title>FreeBSD: Start / Stop / Restart Nginx Web Server</title><link>http://www.cyberciti.biz/faq/freebsd-start-stop-restart-nginx-webserver/</link> <comments>http://www.cyberciti.biz/faq/freebsd-start-stop-restart-nginx-webserver/#comments</comments> <pubDate>Thu, 13 Mar 2008 13:13:29 +0000</pubDate> <dc:creator>Vivek Gite</dc:creator> <category><![CDATA[FreeBSD]]></category> <category><![CDATA[Networking]]></category> <category><![CDATA[Nginx]]></category> <category><![CDATA[Package management]]></category> <category><![CDATA[/usr/local/etc/nginx/nginx.conf]]></category> <category><![CDATA[/usr/local/etc/rc.d/nginx]]></category> <category><![CDATA[freebsd nginx]]></category> <category><![CDATA[nginx configuration file]]></category> <category><![CDATA[nginx_enable="YES"]]></category> <category><![CDATA[restart nginx]]></category> <category><![CDATA[start nginx]]></category> <category><![CDATA[stop nginx]]></category> <category><![CDATA[web server]]></category> <guid
isPermaLink="false">http://www.cyberciti.biz/faq/?p=2104</guid> <description><![CDATA[<div
style='float:right;margin-top:0px;margin-left:5px;'><a
href='http://www.cyberciti.biz/faq/category/nginx/' title='See all Nginx webserver related FAQ'><img
src='http://files.cyberciti.biz/cbzcache/3rdparty/nginx.gif' border='0' /></a></div> <span
style='color: rgb(255, 0, 0);'>Q.</span> How do I start / stop / restart Nginx webserver under FreeBSD operating systems? How do I test Nginx web server config file syntax before restarting my server?]]></description> <wfw:commentRss>http://www.cyberciti.biz/faq/freebsd-start-stop-restart-nginx-webserver/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
