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

      Block XMLRPC Calls on WordPress from the Host Level
      IT Discussion • wordpress xmlrpc apache nginx litespeed openlitespeed htaccess • • scottalanmiller

      1
      0
      Votes
      1
      Posts
      90
      Views

      No one has replied

    • Oksana

      Setting Up Remote Office Using NextCloud with LAMP on Ubuntu
      Starwind • linux apache mysql ubuntu nextcloud • • Oksana

      1
      2
      Votes
      1
      Posts
      166
      Views

      No one has replied

    • Pete.S

      Unsolved Apache config problem
      IT Discussion • apache • • Pete.S

      4
      0
      Votes
      4
      Posts
      174
      Views

      dbeato

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

    • Pete.S

      Apache installation - file owner & permissions?
      IT Discussion • apache permissions php • • Pete.S

      3
      0
      Votes
      3
      Posts
      150
      Views

      scottalanmiller

      @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

    • wirestyle22

      httpd dead but pid file exists
      IT Discussion • apache rhel 5.11 • • wirestyle22

      85
      0
      Votes
      85
      Posts
      1386
      Views

      StrongBad

      @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.

    • wirestyle22

      Address Already in Use AH00072: make_sock could not bind to address 0.0.0.0:80 (Apache)
      IT Discussion • apache • • wirestyle22

      8
      0
      Votes
      8
      Posts
      623
      Views

      wirestyle22

      Thanks btw @coliver. Appreciate the help.

    • IRJ

      Massive speed increase when switching WordPress from apache to nginx
      IT Discussion • nginx apache • • IRJ

      14
      4
      Votes
      14
      Posts
      270
      Views

      Pete.S

      @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.

    • scottalanmiller

      Solved Tracking Down an Apache & WordPress Memory Leak
      IT Discussion • wordpress apache ubuntu linux ubuntu 19.04 httpd prefork • • scottalanmiller

      5
      1
      Votes
      5
      Posts
      1225
      Views

      scottalanmiller

      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.

    • scottalanmiller

      Solved WordPress Cutover Main Page Works, but Secondary Pages Do Not
      IT Discussion • wordpress cloudflare nginx varnish apache php ubuntu linux ubuntu 19.04 • • scottalanmiller

      19
      0
      Votes
      19
      Posts
      575
      Views

      StuartJordan

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

    • Oksana

      Why pay more? Host a static website in Azure with cut costs
      Starwind • azure apache server storage microsoft • • Oksana

      1
      1
      Votes
      1
      Posts
      157
      Views

      No one has replied

    • scottalanmiller

      Fedora 30 LAMP Web Server Varnish Cache Broken After Update
      IT Discussion • fedora linux fedora 30 varnish cache nginx apache httpd lamp web server • • scottalanmiller

      10
      1
      Votes
      10
      Posts
      331
      Views

      scottalanmiller

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

    • Oksana

      Run your dynamic websites and servers with AMP (Apache, MySQL, and PHP) stack
      Starwind • apache mysql php highavailability ubuntu • • Oksana

      2
      1
      Votes
      2
      Posts
      162
      Views

      Obsolesce

      FLAMP >

    • IRJ

      Solved WordPress admin page redirecting to IP
      IT Discussion • wordpress apache lets encrypt • • IRJ

      4
      0
      Votes
      4
      Posts
      120
      Views

      WLS-ITGuy

      @JaredBusch said in WordPress admin page redirecting to IP:

      Is the site URL correct in the settings

      Been there many times :angry_face:

    • WLS-ITGuy

      NGINX vs Apache
      IT Discussion • webserver nginx apache • • WLS-ITGuy

      10
      2
      Votes
      10
      Posts
      335
      Views

      wrx7m

      @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.

    • scottalanmiller

      Fedora 29 Apache HTTPD Keeps Adding ssl.conf
      IT Discussion • linux fedora fedora 29 apache httpd ssl • • scottalanmiller

      13
      0
      Votes
      13
      Posts
      536
      Views

      scottalanmiller

      @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.

    • DustinB3403

      CentOS7 Server Apache Disable old TLS for higher versions
      IT Discussion • tls tls 1.2 tls 1.0 apache httpd • • DustinB3403

      12
      3
      Votes
      12
      Posts
      1654
      Views

      JaredBusch

      @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

    • Pete.S

      Fail-over solutions
      IT Discussion • mysql php apache windows server • • Pete.S

      25
      0
      Votes
      25
      Posts
      955
      Views

      jmoore

      @scottalanmiller Yeah both of my webservers use mariadb for example

    • NashBrydges

      Fedora Update Breaks httpd
      IT Discussion • fedora apache linux web server • • NashBrydges

      18
      1
      Votes
      18
      Posts
      1331
      Views

      NashBrydges

      @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.

    • DustinB3403

      Apache Struts - Critical Security Flaw
      News • apache struts vulnerability httpd equifax breach millions • • DustinB3403

      21
      0
      Votes
      21
      Posts
      2413
      Views

      coliver

      @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.

    • brianlittlejohn

      Solved Certbot Apache plugin broken in Fedora 26
      IT Discussion • lets encrypt certbot apache fredora linux fedora 26 ssl ssl certificates tls • • brianlittlejohn

      20
      2
      Votes
      20
      Posts
      3948
      Views

      JaredBusch

      @zachary715 said in Certbot Apache plugin broken in Fedora 26:

      @scottalanmiller said in Certbot Apache plugin broken in Fedora 26:

      I ran into this issue, forgot about this thread, went through LetsEncrypt's threads and their solution for this problem led me... here! Very nice.

      Just did the exact same thing. Let'sEncrypt forum had the link which led me here right about the time @JaredBusch was responding in my other thread.

      It has been posted on here more than one time. I should probably find one of those posts and make @scottalanmiller tag it appropriately.

      Edit: Or too slow..