Questions tagged «nginx»

6
WordPress wp-admin https重定向循环
我使用nginx作为我的网络服务器,并且我已经编辑了配置文件以指向https,因此我将WordPress网址设置更改为https,并且还将WordPress force ssl管理员代码添加到了我的wp-config文件中,但是我一直遇到错误“ 该网页具有重定向循环 ”
60 ssl  nginx 

4
更改永久链接在Nginx上给我404错误
编辑 事实证明,由于nginx不使用它,所以我试图编辑.htaccess时出错了。我显然需要做的是编辑.conf文件。在我阅读本文之前,my_app.conf看起来像这样: upstream backend { server unix:/u/apps/my_app/tmp/php.sock; } server { listen 80 default; root /u/apps/my_app/www; index index.php; access_log /u/apps/my_app/logs/access.log; error_log /u/apps/my_app/logs/error.log; location / { try_files $uri $uri/ /index.php; } # This location block matches anything ending in .php and sends it to # our PHP-FPM socket, defined in the upstream …


4
优化WP使用的Apache
问候, 我有一个WP网站,每天的网页浏览量超过15万。 它运行在2.80GHz的Intel Core i5 CPU 760上,带有Centos和4 GB的RAM。 问题是WP消耗过多的RAM,并且一段时间后服务过载,并且RAM用完。我已经尝试了许多Apache tweek,但似乎没有任何效果。重新启动后,Apache站点将运行平稳,但是一两个小时后,它将再次变得超载。 你们中有谁对我有帮助的提示? 顺便说一句,我正在使用WP-超级缓存。 更新:附加信息 这是我的插件列表: Akismet 联络表格7 域镜像 图像插入速度更快 다 角色经理 性感书签 智能Youtube 星级评论 摘录缩略图 WP民意调查 WP-SWF对象 WP超级缓存 至于星期几,我从这里尝试了一些技巧 我的设置是: <IfModule prefork.c> StartServers 8 MinSpareServers 5 MaxSpareServers 20 ServerLimit 256 MaxClients 200 MaxRequestsPerChild 1000 </IfModule> <IfModule worker.c> StartServers 2 MaxClients 150 …

2
Wordpress将端口8080上的连接重定向到80
我有一个wordpress博客,由Ubuntu 12.04上的apache2(在端口80上)和nginx(在端口8080上)提供。现在,每当客户端通过端口80连接时,一切都是笨拙的,但是当客户端连接到8080以查看同一博客时,该连接将重定向到apache。为什么会这样呢?我四处搜索,发现这是Wordpress的限制,它将所有连接重定向到仪表板中设置的站点URL(默认为端口80)。 有没有解决的办法?到端口8080的连接将由Nginx提供服务,而不是由Apache提供服务 / etc / nginx / sites-enabled / wordpress的内容 server { listen 8080; root /var/www; index index.php index.html index.htm; server_name abc.com; location / { try_files $uri $uri/ /index.php?q=$uri&$args; } location /doc/ { alias /usr/share/doc/; autoindex on; allow 127.0.0.1; deny all; } error_page 404 /404.html; error_page 500 502 503 …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.