<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Question2Answer Q&amp;A - Recent questions tagged nginx</title>
<link>https://www.question2answer.org/qa/tag/nginx</link>
<description>Powered by Question2Answer</description>
<item>
<title>how to write nginx conf file for url rewrites of Q2A ?</title>
<link>https://www.question2answer.org/qa/112027/how-to-write-nginx-conf-file-for-url-rewrites-of-q2a</link>
<description>how to write nginx conf file for url rewrites of Q2A ?</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/112027/how-to-write-nginx-conf-file-for-url-rewrites-of-q2a</guid>
<pubDate>Mon, 15 Jan 2024 08:23:08 +0000</pubDate>
</item>
<item>
<title>The website is running on nginx and there is an error in the htaccess file</title>
<link>https://www.question2answer.org/qa/111918/the-website-running-nginx-and-there-error-the-htaccess-file</link>
<description>

&lt;p style=&quot;direction: ltr;&quot;&gt;The website is running on nginx and there is an error in the htaccess file&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;I am trying to implement what is in this question [&lt;a rel=&quot;nofollow&quot; href=&quot;https://www.question2answer.org/qa/43081/the-correct-rule-of-rewrite-for-nginx&quot;&gt;The correct rule of rewrite for nginx&lt;/a&gt;], but when entering the &lt;a rel=&quot;nofollow&quot; href=&quot;https://test.mtalm.com/ask&quot;&gt;ask&lt;/a&gt; page, it does not work&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;Please help modify this Vhost code&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;server {&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; listen 80;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; listen [::]:80;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; listen 443 ssl http2;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; listen [::]:443 ssl http2;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; {{ssl_certificate_key}}&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; {{ssl_certificate}}&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; server_name test.mtalm.com;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; {{root}}&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; {{nginx_access_log}}&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; {{nginx_error_log}}&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; if ($scheme != &quot;https&quot;) {&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; &amp;nbsp; rewrite ^ https://$host$uri permanent;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; }&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; location ~ /.well-known {&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; &amp;nbsp; auth_basic off;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; &amp;nbsp; allow all;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; }&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; {{settings}}&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; location / {&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; &amp;nbsp; {{varnish_proxy_pass}}&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; &amp;nbsp; proxy_set_header Host $http_host;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; &amp;nbsp; proxy_set_header X-Forwarded-Host $http_host;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; &amp;nbsp; proxy_set_header X-Real-IP $remote_addr;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; &amp;nbsp; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; &amp;nbsp; proxy_hide_header X-Varnish;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; &amp;nbsp; proxy_redirect off;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; &amp;nbsp; proxy_max_temp_file_size 0;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; &amp;nbsp; proxy_connect_timeout&amp;nbsp; &amp;nbsp; &amp;nbsp; 720;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; &amp;nbsp; proxy_send_timeout&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;720;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; &amp;nbsp; proxy_read_timeout&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;720;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; &amp;nbsp; proxy_buffer_size&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 128k;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; &amp;nbsp; proxy_buffers&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 4 256k;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; &amp;nbsp; proxy_busy_buffers_size&amp;nbsp; &amp;nbsp; 256k;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; &amp;nbsp; proxy_temp_file_write_size 256k;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; }&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; location ~* ^.+\.(css|js|jpg|jpeg|gif|png|ico|gz|svg|svgz|ttf|otf|woff|woff2|eot|mp4|ogg|ogv|webm|webp|zip|swf|map)$ {&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; &amp;nbsp; add_header Access-Control-Allow-Origin &quot;*&quot;;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; &amp;nbsp; expires max;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; &amp;nbsp; access_log off;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; }&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; if (-f $request_filename) {&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; &amp;nbsp; break;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; }&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;}&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;server {&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; listen 8080;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; listen [::]:8080;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; server_name test.mtalm.com;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; {{root}}&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; try_files $uri $uri/ /index.php?$args;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; index index.php index.html;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp;&amp;nbsp;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; location ~ \.php$ {&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; &amp;nbsp; include fastcgi_params;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; &amp;nbsp; fastcgi_intercept_errors on;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; &amp;nbsp; fastcgi_index index.php;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; &amp;nbsp; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; &amp;nbsp; try_files $uri =404;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; &amp;nbsp; fastcgi_read_timeout 3600;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; &amp;nbsp; fastcgi_send_timeout 3600;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; &amp;nbsp; fastcgi_param HTTPS &quot;on&quot;;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; &amp;nbsp; fastcgi_param SERVER_PORT 443;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; &amp;nbsp; fastcgi_pass 127.0.0.1:{{php_fpm_port}};&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; &amp;nbsp; fastcgi_param PHP_VALUE &quot;{{php_settings}}&quot;;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; }&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; if (-f $request_filename) {&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; &amp;nbsp; break;&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;&amp;nbsp; }&lt;/p&gt;

&lt;p style=&quot;direction: ltr;&quot;&gt;}&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/111918/the-website-running-nginx-and-there-error-the-htaccess-file</guid>
<pubDate>Sat, 06 Jan 2024 06:52:03 +0000</pubDate>
</item>
<item>
<title>What Will Be The Rule For .htaccess and nginx URL Rewrite</title>
<link>https://www.question2answer.org/qa/100741/what-will-be-the-rule-for-htaccess-and-nginx-url-rewrite</link>
<description>

&lt;p&gt;I want to install Q2A on Subdomain Subdirectory &lt;strong&gt;(&lt;a href=&quot;https://subdomain.xyz.com/qa&quot; rel=&quot;nofollow&quot;&gt;https://subdomain.xyz.com/qa&lt;/a&gt;)&lt;/strong&gt; Or, Only main domain subdirectory &lt;strong&gt;(Like &lt;a href=&quot;https://abc.com/qa&quot; rel=&quot;nofollow&quot;&gt;https://abc.com/qa&lt;/a&gt;)&lt;/strong&gt;. Everything works fine but first URL structure which require &lt;strong&gt;.htaccess&lt;/strong&gt; not working.&lt;/p&gt;

&lt;p&gt;What should be the &lt;strong&gt;.htaccess&lt;/strong&gt; and &lt;strong&gt;Nginx Conf. Rule&lt;/strong&gt; for first URL structire for working.&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/100741/what-will-be-the-rule-for-htaccess-and-nginx-url-rewrite</guid>
<pubDate>Wed, 13 Apr 2022 10:13:00 +0000</pubDate>
</item>
<item>
<title>What is the best server setup to install Q2A?</title>
<link>https://www.question2answer.org/qa/92191/what-is-the-best-server-setup-to-install-q2a</link>
<description>What is the best server setup to install Q2A without limit configurations in perfomance and in Q2A usage to scale and what are the settings that limit items on the Board?&lt;br /&gt;
&lt;br /&gt;
How many number categories/tags/users can be allowed by an apache/php/mysql tipical to present them all correctly?&lt;br /&gt;
&lt;br /&gt;
How many is too many?&lt;br /&gt;
&lt;br /&gt;
And for nginx?&lt;br /&gt;
&lt;br /&gt;
Apache Servers see categories items as inodes?&lt;br /&gt;
&lt;br /&gt;
thanks</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/92191/what-is-the-best-server-setup-to-install-q2a</guid>
<pubDate>Wed, 07 Apr 2021 06:11:28 +0000</pubDate>
</item>
<item>
<title>I am packaging Question2Answer for YunoHost, are there any quirks that I should know about? And about LDAP Login?</title>
<link>https://www.question2answer.org/qa/91146/packaging-question2answer-yunohost-quirks-should-about-about</link>
<description>

&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;I'm creating a package to allow easy installation of Q2A on &lt;a rel=&quot;nofollow&quot; href=&quot;https://yunohost.org&quot;&gt;YunoHost&lt;/a&gt; , I plan to add ldap integration to it, is the &lt;a rel=&quot;nofollow&quot; href=&quot;https://github.com/zakkak/qa-ldap-login&quot;&gt;LDAP Login plugin&lt;/a&gt; maintained? Where can I find its stable versions? How stable is that plugin?&lt;/p&gt;

&lt;p&gt;My current version of the package can be found at &lt;a rel=&quot;nofollow&quot; href=&quot;https://github.com/nils-van-zuijlen/question2answer_ynh&quot;&gt;github.com/nils-van-zuijlen/question2answer_ynh&lt;/a&gt;&lt;/p&gt;</description>
<category>Plugins</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/91146/packaging-question2answer-yunohost-quirks-should-about-about</guid>
<pubDate>Tue, 23 Feb 2021 09:52:52 +0000</pubDate>
</item>
<item>
<title>Best hosting server for Q2A with traffic like question2answer site</title>
<link>https://www.question2answer.org/qa/84276/best-hosting-server-with-traffic-like-question2answer-site</link>
<description>What is the best hosting server for Q2A with traffic like question2answer site with less cost?&lt;br /&gt;
&lt;br /&gt;
Can anyone give any idea on these options:&lt;br /&gt;
&lt;br /&gt;
1. Amazon Cloud server (Cost is very high)&lt;br /&gt;
&lt;br /&gt;
2. DigitalOcean (Cost is less compared to AWS)&lt;br /&gt;
&lt;br /&gt;
3. Godaddy&lt;br /&gt;
&lt;br /&gt;
4. Inmotion hosting&lt;br /&gt;
&lt;br /&gt;
I would also love to listen from @Scott about best option as question2answer website is hosted on DigitalOcean.</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/84276/best-hosting-server-with-traffic-like-question2answer-site</guid>
<pubDate>Tue, 26 May 2020 10:19:14 +0000</pubDate>
</item>
<item>
<title>URL structure is different in Apache and NGINX. WHY?????</title>
<link>https://www.question2answer.org/qa/80679/url-structure-is-different-in-apache-and-nginx-why</link>
<description>

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;&lt;strong&gt;I have hosted my site on NGINX server and site is working well and no issue detected but one thing is found that is different in apache and NGINX for q2a site.&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;&lt;strong&gt;URL structure is different in NGINX as compared to apache.&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#e74c3c&quot;&gt;&lt;strong&gt;URL in Nginx for question page is&amp;nbsp;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;&amp;lt;script src=&quot;../../qa-content/jquery-3.3.1.min.js&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;&amp;lt;script src=&quot;../../qa-content/qa-global.js?1.8.3&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;&amp;lt;script src=&quot;../../qa-plugin/wysiwyg-editor/ckeditor/ckeditor.js?1.8.3&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:#e74c3c&quot;&gt;But in Apache server for same question pages the url parrent is&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;&amp;lt;script src=&quot;../qa-content/jquery-3.3.1.min.js&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;&amp;lt;script src=&quot;../qa-content/qa-global.js?1.8.3&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;&amp;lt;script src=&quot;../qa-theme/SnowFlat/js/snow-core.js?1.8.3&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;I don't understand why it is happening. I tried to figure it out but did not get any conclusion on IT&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;Please Scott kindly make me understand.&lt;/span&gt;&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/80679/url-structure-is-different-in-apache-and-nginx-why</guid>
<pubDate>Sat, 18 Jan 2020 10:30:12 +0000</pubDate>
</item>
<item>
<title>Everyone should know this about Q2A and NGINX server? Specially requesting Q2A core team to make this clear?</title>
<link>https://www.question2answer.org/qa/80653/everyone-should-about-nginx-server-specially-requesting-clear</link>
<description>

&lt;p&gt;I have applied these NGINX settings to make it work for .htaccess rewrite rule&lt;/p&gt;

&lt;blockquote&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;location / {&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;try_files $uri $uri/ /index.php?qa-rewrite=$uri&amp;amp;$args;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;}&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;location /index {&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;try_files $uri $uri/ /index.php?$args;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;}&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;location ~ \.php$ {&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;root html;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;try_files $uri =404;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;fastcgi_read_timeout 300;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;fastcgi_pass&amp;nbsp; &amp;nbsp;unix:/opt/bitnami/php/var/run/www.sock;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;fastcgi_index&amp;nbsp; index.php;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;fastcgi_param&amp;nbsp; SCRIPT_FILENAME $request_filename;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;includefastcgi_params;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;}&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;I have also applied setting to work for custom 404 page by q2a&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;here is code, just add in config file:&lt;/span&gt;&lt;/p&gt;

&lt;blockquote&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;error_page 404 /404.html;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;location = /404.html {&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;try_files $uri $uri/ /index.php?qa-rewrite=$uri&amp;amp;$args;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;}&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;Everything is working well on NGINX server but the two error I got while testing the site. HERE are the result:&lt;/p&gt;

&lt;table border=&quot;1&quot; cellpadding=&quot;1&quot;&gt;

&lt;thead&gt;

&lt;tr&gt;

&lt;th scope=&quot;col&quot;&gt;APACHE server&lt;/th&gt;

&lt;th scope=&quot;col&quot;&gt;NGINX server&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;

&lt;tbody&gt;

&lt;tr&gt;

&lt;td&gt;

&lt;ol&gt;

&lt;li&gt;If you access any question url with .php extension Ex. -&amp;nbsp;&lt;a rel=&quot;nofollow&quot; href=&quot;https://www.question2answer.org/qa/80474/htaccess-working-nginx-server-please-make-work-support-site&quot;&gt;https://www.question2answer.org/qa/80474/htaccess-working-nginx-server-please-make-work-support-site&lt;/a&gt;&lt;span style=&quot;color:#e74c3c&quot;&gt;.php&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;

&lt;p&gt;&lt;span style=&quot;color:#e74c3c&quot;&gt;&lt;strong&gt;You will be redirected to the original url without file extension&lt;/strong&gt;&lt;/span&gt; i.e&amp;nbsp;&lt;a rel=&quot;nofollow&quot; href=&quot;https://www.question2answer.org/qa/80474/htaccess-working-nginx-server-please-make-work-support-site&quot;&gt;https://www.question2answer.org/qa/80474/htaccess-working-nginx-server-please-make-work-support-site&lt;/a&gt;&amp;nbsp;&lt;/p&gt;&lt;/td&gt;

&lt;td&gt;

&lt;ol&gt;

&lt;li&gt;But If you access any question url with .php extension Ex. -&amp;nbsp;&lt;a rel=&quot;nofollow&quot; href=&quot;https://www.question2answer.org/qa/80474/htaccess-working-nginx-server-please-make-work-support-site&quot;&gt;https://www.question2answer.org/qa/80474/htaccess-working-nginx-server-please-make-work-support-site&lt;/a&gt;&lt;span style=&quot;color:#e74c3c&quot;&gt;.php&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:#e74c3c&quot;&gt;It is giving 404 error.&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt;

&lt;td&gt;2. If you access this url with .php extension I'm getting 404 error.
&lt;br&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;https://www.question2answer.org/qa/user/j.kargo/activity.php&quot;&gt;https://www.question2answer.org/qa/user/j.kargo/activity.php&lt;/a&gt;&lt;/td&gt;

&lt;td&gt;2. If you access this url with .php extension I'm getting 404 error for static files but url loads.
&lt;br&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;https://www.question2answer.org/qa/user/j.kargo/activity.php&quot;&gt;https://www.question2answer.org/qa/user/j.kargo/activity.php&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;

&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:#e74c3c&quot;&gt;&amp;nbsp;This is my complete configuration:&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;location / {&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;try_files $uri $uri/ /index.php?qa-rewrite=$uri&amp;amp;$args;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;}&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;location /index {&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;try_files $uri $uri/ /index.php?$args;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;}&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;location ~ \.php$ {&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;root html;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;try_files $uri =404;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;fastcgi_read_timeout 300;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;fastcgi_pass&amp;nbsp; &amp;nbsp;unix:/opt/bitnami/php/var/run/www.sock;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;fastcgi_index&amp;nbsp; index.php;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;fastcgi_param&amp;nbsp; SCRIPT_FILENAME $request_filename;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;includefastcgi_params;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;}&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;error_page 404 /404.html;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;location = /404.html {&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;try_files $uri $uri/ /index.php?qa-rewrite=$uri&amp;amp;$args;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;}&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;I expect help from anybody regarding this.&lt;/p&gt;

&lt;p&gt;Thanks in advance&amp;nbsp;&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/80653/everyone-should-about-nginx-server-specially-requesting-clear</guid>
<pubDate>Fri, 17 Jan 2020 07:29:23 +0000</pubDate>
</item>
<item>
<title>Error after changing hosting. Nginx + php-fpm</title>
<link>https://www.question2answer.org/qa/80600/error-after-changing-hosting-nginx-php-fpm</link>
<description>

&lt;p&gt;Hi,&lt;/p&gt;

&lt;p&gt;Nginx&amp;nbsp;throws this error. Everything works through Apache. I think that it’s the encoding, but I don’t know where to fix it.&amp;nbsp;&lt;/p&gt;

&lt;p&gt;Upd: I use the official release. There was no such problem on the previous hosting. I looked at the database - everything is displayed normally.&lt;/p&gt;

&lt;p&gt;&lt;u&gt;Upd2:&amp;nbsp;Found out that the error is only on php 7.1. On php 7.0 everything works.&lt;/u&gt;&lt;/p&gt;

&lt;p&gt;Thanks.&lt;/p&gt;

&lt;p&gt;2020/01/14 12:16:25 [error] 1418#1418: *3704 FastCGI sent in stderr: &quot;PHP message: PHP Question2Answer MySQL query error 1064: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near &lt;strong&gt;'AN'СЃРґРµР»Р°С‚СЊ' word=$ COLLATE utf8_bin LIMIT 1) ORDER BY postcreat0d20DESC L&lt;/strong&gt;' at line 1 - Query: SELECT qa_posts.postid, qa_posts.categoryid, qa_posts.type, LEFT(qa_posts.type, 1) AS `basetype`, INSTR(qa_posts.type, '_HIDDEN')&amp;gt;0 AS `hidden`, INSTR(qa_posts.type, '_QUEUED')&amp;gt;0 AS `queued`, qa_posts.acount, qa_posts.selchildid, qa_posts.closedbyid, qa_posts.upvotes, qa_posts.downvotes, qa_posts.netvotes, qa_posts.views, qa_posts.hotness, qa_posts.flagcount, qa_posts.title, qa_posts.tags, UNIX_TIMESTAMP(qa_posts.created) AS `created`, qa_posts.name, qa_categories.title AS `categoryname`, qa_categories.backpath AS `categorybackpath`, CONCAT_WS(',', qa_posts.catidpath1, qa_posts.catidpath2, qa_posts.catidpath3, qa_posts.categoryid) AS `categoryids`, qa_uservotes.vote AS `uservote`, qa_uservotes.flag AS `userflag`, qa&quot; while reading response header from upstream, , request: &quot;GET /?qa=tag/%D1%81%D0%B4%D0%B5%D0%BB%D0%B0%D1%82%D1%8C HTTP/1.1&quot;, upstream: &quot;fastcgi://unix:/run/php/php7.1-fpm.sock:&quot;&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/80600/error-after-changing-hosting-nginx-php-fpm</guid>
<pubDate>Tue, 14 Jan 2020 12:59:14 +0000</pubDate>
</item>
<item>
<title>.htaccess not working on NGINX server. Please help me how to make it work to support Q2A Site</title>
<link>https://www.question2answer.org/qa/80474/htaccess-working-nginx-server-please-make-work-support-site</link>
<description>

&lt;p&gt;I have moved my q2a site from Apache server to the NGINX server for better performance and speed.&lt;/p&gt;

&lt;p&gt;But the first url structure require .htaccess to work but it is not working on NGINX and the first url not working.&lt;/p&gt;

&lt;p&gt;I have tried some tips provided in this site Q&amp;amp;A but still it is not working.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;I need this url sturcture&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;small&gt;&lt;span style=&quot;color:#000000&quot;&gt;&lt;span style=&quot;background-color:#2ecc71&quot;&gt;/123/why-do-birds-sing (requires &lt;/span&gt;&lt;/span&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;http://www.question2answer.org/htaccess.php&quot; target=&quot;_blank&quot;&gt;&lt;span style=&quot;color:#000000&quot;&gt;&lt;span style=&quot;background-color:#2ecc71&quot;&gt;htaccess&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;color:#000000&quot;&gt;&lt;span style=&quot;background-color:#2ecc71&quot;&gt; file)&lt;/span&gt;&lt;/span&gt;&lt;/small&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:#000000&quot;&gt;&lt;span style=&quot;font-size:13.3333px&quot;&gt;Code written in .htaccess file:&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;&lt;span style=&quot;font-size:13.3333px&quot;&gt;Options -Indexes&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;&lt;span style=&quot;font-size:13.3333px&quot;&gt;DirectoryIndex index.php&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;&lt;span style=&quot;font-size:13.3333px&quot;&gt;&amp;lt;IfModule mod_rewrite.c&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;&lt;span style=&quot;font-size:13.3333px&quot;&gt;RewriteEngine On&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;&lt;span style=&quot;font-size:13.3333px&quot;&gt;#RewriteBase /&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;&lt;span style=&quot;font-size:13.3333px&quot;&gt;RewriteCond %{REQUEST_URI} ^(.*)//(.*)$&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;&lt;span style=&quot;font-size:13.3333px&quot;&gt;RewriteRule . %1/%2 [R=301,L]&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;&lt;span style=&quot;font-size:13.3333px&quot;&gt;RewriteCond %{REQUEST_FILENAME} !-f&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;&lt;span style=&quot;font-size:13.3333px&quot;&gt;RewriteCond %{REQUEST_FILENAME} !-d&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;&lt;span style=&quot;font-size:13.3333px&quot;&gt;RewriteRule ^.*$ index.php?qa-rewrite=$0&amp;amp;%{QUERY_STRING} [L]&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000&quot;&gt;&lt;span style=&quot;font-size:13.3333px&quot;&gt;&amp;lt;/IfModule&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:#e74c3c&quot;&gt;How to convert this code to work in NGINX server?&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:#e74c3c&quot;&gt;Please help&amp;nbsp;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/80474/htaccess-working-nginx-server-please-make-work-support-site</guid>
<pubDate>Tue, 07 Jan 2020 12:13:29 +0000</pubDate>
</item>
<item>
<title>RSS Feed 404 Not Found nginx</title>
<link>https://www.question2answer.org/qa/78328/rss-feed-404-not-found-nginx</link>
<description>

&lt;p&gt;Why my rss feed not found ?&lt;/p&gt;

&lt;p&gt;my site&amp;nbsp;&lt;a rel=&quot;nofollow&quot; href=&quot;http://houseofdream.com.ua/q/&quot;&gt;http://houseofdream.com.ua/q/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;rss feed&amp;nbsp;&lt;a rel=&quot;nofollow&quot; href=&quot;http://houseofdream.com.ua/q/feed/qa.rss&quot;&gt;http://houseofdream.com.ua/q/feed/qa.rss&lt;/a&gt;&amp;nbsp;(not found)&lt;/p&gt;

&lt;p&gt;i use nginx + php-fpm&amp;nbsp;&lt;/p&gt;

&lt;p&gt;all else links work fine&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/78328/rss-feed-404-not-found-nginx</guid>
<pubDate>Fri, 04 Oct 2019 20:34:00 +0000</pubDate>
</item>
<item>
<title>Where do I place the q2a files to run under nginx?</title>
<link>https://www.question2answer.org/qa/74249/where-do-i-place-the-q2a-files-to-run-under-nginx</link>
<description></description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/74249/where-do-i-place-the-q2a-files-to-run-under-nginx</guid>
<pubDate>Thu, 18 Apr 2019 18:24:33 +0000</pubDate>
</item>
<item>
<title>How config q2a for using memcached</title>
<link>https://www.question2answer.org/qa/57522/how-config-q2a-for-using-memcached</link>
<description>Hi &lt;br /&gt;
&lt;br /&gt;
How config q2a for using memcached ?</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/57522/how-config-q2a-for-using-memcached</guid>
<pubDate>Sun, 30 Apr 2017 06:07:01 +0000</pubDate>
</item>
<item>
<title>How to config nginx on ubuntu for q2a in index.php  URL structure</title>
<link>https://www.question2answer.org/qa/57447/how-to-config-nginx-on-ubuntu-for-q2a-index-php-url-structure</link>
<description>

&lt;p&gt;Hi there&amp;nbsp;&lt;/p&gt;

&lt;p&gt;I created q2a project in subfolder in nginx server&lt;/p&gt;

&lt;p&gt;everything works fine for &quot;&lt;span style=&quot;font-family:helvetica,arial,sans-serif; font-size:14px&quot;&gt;&amp;nbsp;&lt;/span&gt;/?qa=123/why-do-birds-sing&lt;span style=&quot;font-family:helvetica,arial,sans-serif; font-size:14px&quot;&gt;&amp;nbsp;&lt;/span&gt;&quot;&amp;nbsp;&lt;span style=&quot;color:rgb(68, 68, 68); font-family:helvetica,arial,sans-serif; font-size:14px&quot;&gt;URL structure, however it gives 404 for&lt;/span&gt;&amp;nbsp;&quot;&lt;span style=&quot;color:rgb(52, 52, 52); font-family:vazir,ubuntu,helvetica,arial,freesans,sans-serif; font-size:16px&quot;&gt;&amp;nbsp;&lt;/span&gt;/index.php/123/why-do-birds-sing&lt;span style=&quot;color:rgb(52, 52, 52); font-family:vazir,ubuntu,helvetica,arial,freesans,sans-serif; font-size:16px&quot;&gt;&amp;nbsp;&lt;/span&gt;&quot;&amp;nbsp;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;font-family: helvetica, arial, sans-serif; color: #444444;&quot;&gt;&lt;span style=&quot;font-size:14px&quot;&gt;how fix it in nginx config?&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/57447/how-to-config-nginx-on-ubuntu-for-q2a-index-php-url-structure</guid>
<pubDate>Wed, 26 Apr 2017 08:30:33 +0000</pubDate>
</item>
<item>
<title>services mysql ,php , apache , nginx when down ?</title>
<link>https://www.question2answer.org/qa/56398/services-mysql-php-apache-nginx-when-down</link>
<description></description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/56398/services-mysql-php-apache-nginx-when-down</guid>
<pubDate>Thu, 23 Feb 2017 06:31:44 +0000</pubDate>
</item>
<item>
<title>Nginx rewrite rules for Wordpress subdirectory install</title>
<link>https://www.question2answer.org/qa/55146/nginx-rewrite-rules-for-wordpress-subdirectory-install</link>
<description>I haven't been able to find the correct way to write redirect rules for an integration with Wordpress where q2a is in a subdirectory like: &lt;a href=&quot;http://www.example.com/qa/&quot; rel=&quot;nofollow&quot;&gt;http://www.example.com/qa/&lt;/a&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/55146/nginx-rewrite-rules-for-wordpress-subdirectory-install</guid>
<pubDate>Wed, 30 Nov 2016 14:14:48 +0000</pubDate>
</item>
<item>
<title>Which one is recommended for Q2A: Nginx PHP-FPM vs Nginx Apache</title>
<link>https://www.question2answer.org/qa/54746/which-one-is-recommended-for-q2a-nginx-php-fpm-vs-nginx-apache</link>
<description>Hi there&lt;br /&gt;
&lt;br /&gt;
In Q2A server configuration, right now we use Nginx Apache. I wanna migrate to Nginx PHP-FPM. Do you recommend to migrate to PHP-FPM?&lt;br /&gt;
&lt;br /&gt;
Is Q2A compatible with PHP-FPM? What other modules should be installed so that Q2A will be working properly?&lt;br /&gt;
&lt;br /&gt;
Thanks,</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/54746/which-one-is-recommended-for-q2a-nginx-php-fpm-vs-nginx-apache</guid>
<pubDate>Sat, 12 Nov 2016 04:48:35 +0000</pubDate>
</item>
<item>
<title>how connfig REDIS cache with q2a</title>
<link>https://www.question2answer.org/qa/54087/how-connfig-redis-cache-with-q2a</link>
<description>how connfig REDIS cache with q2a</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/54087/how-connfig-redis-cache-with-q2a</guid>
<pubDate>Fri, 14 Oct 2016 08:41:53 +0000</pubDate>
</item>
<item>
<title>Moving to new host with problems. Pages not found</title>
<link>https://www.question2answer.org/qa/51264/moving-to-new-host-with-problems-pages-not-found</link>
<description>

&lt;p&gt;hi
&lt;br&gt;
&lt;br&gt;i moved site to new server and get Failed to load resource: the server responded with a status of 404 (Not Found)&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;background-color:rgb(245, 245, 245); color:rgb(64, 64, 64); font-family:open sans; font-size:14px&quot;&gt;Homepage opening but clicking any link gives a blank/404/error page&amp;nbsp;&lt;/span&gt;
&lt;br&gt;
&lt;br&gt;my server is nginx&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/51264/moving-to-new-host-with-problems-pages-not-found</guid>
<pubDate>Mon, 11 Apr 2016 10:50:42 +0000</pubDate>
</item>
<item>
<title>how to config nginx on ubuntu for q2a?</title>
<link>https://www.question2answer.org/qa/49781/how-to-config-nginx-on-ubuntu-for-q2a</link>
<description>I bought a digitalocean vps with an ubuntu os . I upload q2a program into it and I found error occurred. I use nginx for web server. But nginx doesnot find my q2a page. Who can give me a nginx on ubuntu cvonfig file to solve this problem ?I really need it .Please help, thank you.</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/49781/how-to-config-nginx-on-ubuntu-for-q2a</guid>
<pubDate>Sat, 09 Jan 2016 21:11:10 +0000</pubDate>
</item>
</channel>
</rss>