ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. Tags
    3. apache
    Log in to post
    • All categories
    • S

      WordPress Site Lost Its Mind - Ten Minutes of Maintenance Over and Over Again

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion wordpress nginx varnish cloudflare apache php
      8
      0 Votes
      8 Posts
      662 Views
      S

      @Pete-S said in WordPress Site Lost Its Mind - Ten Minutes of Maintenance Over and Over Again:

      This is how you do that:
      https://developer.wordpress.org/plugins/cron/hooking-wp-cron-into-the-system-task-scheduler/

      Nice, good info. Thanks.

    • S

      Block XMLRPC Calls on WordPress from the Host Level

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion wordpress xmlrpc apache nginx litespeed openlitespeed htaccess
      1
      0 Votes
      1 Posts
      394 Views
      No one has replied
    • O

      Setting Up Remote Office Using NextCloud with LAMP on Ubuntu

      Watching Ignoring Scheduled Pinned Locked Moved Starwind linux apache mysql ubuntu nextcloud
      1
      2 Votes
      1 Posts
      502 Views
      No one has replied
    • 1

      Apache config problem

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved IT Discussion apache
      4
      0 Votes
      4 Posts
      459 Views
      D

      Depends on the Apache version, what version do you have 2.2 or 2.4?

    • 1

      Apache installation - file owner & permissions?

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion apache permissions php
      3
      0 Votes
      3 Posts
      583 Views
      S

      @Pete-S said in Apache installation - file owner & permissions?:

      I was wondering what permission and owner should files like html, php etc have?

      Normally you just do...

      chown www-data:www-data -R /var/www/html

    • W

      httpd dead but pid file exists

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion apache rhel 5.11
      85
      0 Votes
      85 Posts
      7k Views
      S

      @JaredBusch said in httpd dead but pid file exists:

      In fact, I would rename anything in conf.d first, and restart.

      You could do something like this...

      mv conf.d conf.d.orig
      mkdir conf.d

      That way you have an empty folder, but can replace it with the old one in a snap all at once.

    • W

      Address Already in Use AH00072: make_sock could not bind to address 0.0.0.0:80 (Apache)

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion apache
      8
      0 Votes
      8 Posts
      1k Views
      W

      Thanks btw @coliver. Appreciate the help.

    • I

      Massive speed increase when switching WordPress from apache to nginx

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion nginx apache
      14
      4 Votes
      14 Posts
      1k Views
      1

      @IRJ said in Massive speed increase when switching WordPress from apache to nginx:

      I really wanted to do everything server side and be as lean as possible. I wanted zero plugins related to performance on my WP site.

      Lean WP, that's an oxymoron if anything 🙂

      I've heard before that some sites are slower with cloudflare CDN compared to going straight to the site. Are you using http/2 as well?

      Most likely in this case, the switch to nginx from apache itself didn't make anything noticeably faster but the caching and compression did.

    • S

      Tracking Down an Apache & WordPress Memory Leak

      Watching Ignoring Scheduled Pinned Locked Moved Solved IT Discussion wordpress apache ubuntu linux ubuntu 19.04 httpd prefork
      5
      1 Votes
      5 Posts
      2k Views
      S

      We got it. Had to open the Nginx logs and noticed too many "posts" in the error log. Dug in and it was three ranges overseas all hitting with a "post timeout attack." It was a light DDoS where sessions were being opened and held causing nginx to wait on a timeout. This caused Apache to just increment forever. Once we blocked those ranges, the Apache thread count started to drop for the first time, and memory started to release. And the continuous flood of nginx error logs ceased.

      If you are looking at nginx error logs, this is what you look for: upstream timed out (110: Connection timed out) while reading response header from upstream, client:

      You can use this command to collect the offending IP addresses:

      grep "upstream timed out" error.log | cut -d' ' -f20

      Then use your firewall to shut them down. We are all good now! Woot.

    • S

      WordPress Cutover Main Page Works, but Secondary Pages Do Not

      Watching Ignoring Scheduled Pinned Locked Moved Solved IT Discussion wordpress cloudflare nginx varnish apache php ubuntu linux ubuntu 19.04
      19
      0 Votes
      19 Posts
      2k Views
      C

      Well let's talk about fedora and updating killing a laptop lol....

    • O

      Why pay more? Host a static website in Azure with cut costs

      Watching Ignoring Scheduled Pinned Locked Moved Starwind azure apache server storage microsoft
      1
      1 Votes
      1 Posts
      362 Views
      No one has replied
    • S

      Fedora 30 LAMP Web Server Varnish Cache Broken After Update

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion fedora linux fedora 30 varnish cache nginx apache httpd lamp web server
      10
      1 Votes
      10 Posts
      1k Views
      S

      Worth noting that the issue comes back when you upgrade to Fedora 31 as well. Same fix still applies.

    • O

      Run your dynamic websites and servers with AMP (Apache, MySQL, and PHP) stack

      Watching Ignoring Scheduled Pinned Locked Moved Starwind apache mysql php highavailability ubuntu
      2
      1 Votes
      2 Posts
      526 Views
      ObsolesceO

      FLAMP >

    • I

      WordPress admin page redirecting to IP

      Watching Ignoring Scheduled Pinned Locked Moved Solved IT Discussion wordpress apache lets encrypt
      4
      0 Votes
      4 Posts
      393 Views
      WLS-ITGuyW

      @JaredBusch said in WordPress admin page redirecting to IP:

      Is the site URL correct in the settings

      Been there many times :angry_face:

    • WLS-ITGuyW

      NGINX vs Apache

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion webserver nginx apache
      10
      2 Votes
      10 Posts
      1k Views
      wrx7mW

      @scottalanmiller said in NGINX vs Apache:

      @wrx7m said in NGINX vs Apache:

      Does Apache have a paid version? I know that nginx reverse proxy is free, but the web server (at least used to be) a paid product.

      Apache is totally free. Nginx is free for all normal purposes, it is advanced features that I've never even thought of wanting that are paid.

      Ahh. Ok. I misconstrued those features as being the entire product.

    • S

      Fedora 29 Apache HTTPD Keeps Adding ssl.conf

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion linux fedora fedora 29 apache httpd ssl
      13
      0 Votes
      13 Posts
      1k Views
      S

      @dafyre said in Fedora 29 Apache HTTPD Keeps Adding ssl.conf:

      Have you tried creating a blank ssl.conf file and then chmod +i ssl.conf ?

      I've not, but that's such a hockie way of doing it, I was hoping not to.

    • DustinB3403D

      CentOS7 Server Apache Disable old TLS for higher versions

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion tls tls 1.2 tls 1.0 apache httpd
      12
      3 Votes
      12 Posts
      3k Views
      JaredBuschJ

      @coliver said in CentOS7 Server Apache Disable old TLS for higher versions:

      @jaredbusch said in CentOS7 Server Apache Disable old TLS for higher versions:

      @coliver said in CentOS7 Server Apache Disable old TLS for higher versions:

      @DustinB3403 I really like this site for information on securing various web servers.

      https://cipherli.st/

      I just implemented their Nginx setting but getting back that TLSv1 was accepted?

      https://www.ssllabs.com/ssltest/analyze.html?d=naggaroth.daerma.com

      First line should read TLS1.2 if you don't have a version of Nginx that supports 1.3.

      Correct. That is the only change I made to their config. I even reran dhparam

    • 1

      Fail-over solutions

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion mysql php apache windows server
      25
      0 Votes
      25 Posts
      2k Views
      jmooreJ

      @scottalanmiller Yeah both of my webservers use mariadb for example

    • NashBrydgesN

      Fedora Update Breaks httpd

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion fedora apache linux web server
      18
      1 Votes
      18 Posts
      2k Views
      NashBrydgesN

      @jaredbusch said in Fedora Update Breaks httpd:

      So, if you followed the original instructions, you can use this to fix it.

      sed -i "s/access\.log/httpd\/access_log/" /etc/httpd/conf.d/bookstack.conf

      Then start apache.

      systemctl start httpd

      As always, thanks @JaredBusch that fixed it for me as well.

    • DustinB3403D

      Apache Struts - Critical Security Flaw

      Watching Ignoring Scheduled Pinned Locked Moved News apache struts vulnerability httpd equifax breach millions
      21
      0 Votes
      21 Posts
      4k Views
      coliverC

      @jaredbusch said in Apache Struts - Critical Security Flaw:

      Was the Eqifax breech because of the march strus flaw or a more recent one?

      Just making sure the actual facts are known.

      The one from March.

    • 1
    • 2
    • 3
    • 1 / 3