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

      Kibana Wazuh - No login page option

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion wazuh wazuh-manger httpd
      14
      0 Votes
      14 Posts
      1k Views
      DustinB3403D

      This is how you change the password.

    • scottalanmillerS

      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
      scottalanmillerS

      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.

    • scottalanmillerS

      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
      scottalanmillerS

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

    • scottalanmillerS

      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
      scottalanmillerS

      @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

    • NashBrydgesN

      HTTPD Fails To Start On Reboot Fedora

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion httpd fedora 27
      11
      0 Votes
      11 Posts
      2k Views
      NashBrydgesN

      @jaredbusch said in HTTPD Fails To Start On Reboot Fedora:

      @nashbrydges said in HTTPD Fails To Start On Reboot Fedora:

      @black3dynamite said in HTTPD Fails To Start On Reboot Fedora:

      Was bookstack working before the reboot?

      It was working. Only after reboot did it screw up.

      @black3dynamite he probably has not rebooted since the first install which he did prior to me fixing the log file error.

      Yup. You are correct.

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

    • scottalanmillerS

      Using SaltStack to Install High Performance LAMP on Fedora 25

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion linux salt saltstack lamp apache httpd php php 7 mariadb
      12
      1 Votes
      12 Posts
      4k Views
      C

      @scottalanmiller How are you liking Salt Stack?

    • scottalanmillerS

      Configure a Basic Apache HTTP Virtual Host for Most Linux

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion apache httpd centos fedora korora rhel linux webserver virtualhost
      5
      2 Votes
      5 Posts
      2k Views
      JaredBuschJ

      @scottalanmiller Also, using just using the root domain name for the conf file name is potentially confusing depending on how much you are hosting.

      Even for my gaming website, I have a bunch of sub domains setup.

      www.daerma.com.conf goes to the root and www.
      oc.daerma.com.conf is owncloud
      obelisk.daerma.com.conf is my nodeBB forum

      That does not even get into what do you do about the ones that you have multiple TLD names for such as .it, .com, .org, etc.

    • scottalanmillerS

      Installing a Basic LAMP Stack on CentOS 7

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion lamp linux mysql mariadb apache httpd php centos centos 7 rhel rhel 7
      20
      4 Votes
      20 Posts
      5k Views
      JaredBuschJ

      @scottalanmiller said in Installing a Basic LAMP Stack on CentOS 7:

      @NashBrydges said in Installing a Basic LAMP Stack on CentOS 7:

      @scottalanmiller I haven't yet. About to give it a try. Stuck to legacy since that was what I was reading everywhere.

      Where is everywhere? Technet says to not use legacy.

      https://technet.microsoft.com/en-us/windows-server-docs/compute/hyper-v/supported-centos-and-red-hat-enterprise-linux-virtual-machines-on-hyper-v

      Legacy is a fallback driver that you never want to use, it's low performance and high overhead. If you needed that for CentOS, it would make Hyper-V a silly, non-production ready platform. But Hyper-V is a good, solid performer.

      Not only that, but I install all of my CentOS 7 VM's as Generation 2 when on Hyper-V they work perfectly with default settings for everything except secure boot. Uncheck secure boot. Everything else is 100% default settings.

    • scottalanmillerS

      Improving Elastix 2 Memory Usage

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion linux apache httpd elastix swappiness elastix 2 elastix 2.3 elastix 2.4 elastix 2.5
      1
      2 Votes
      1 Posts
      1k Views
      No one has replied
    • Gaurav BmotraG

      Elastix login page gives error HTTP ERROR 500 when login

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion voip pbx freepbx elastix elastix 4 linux centos centos 7 httpd apache
      24
      1 Votes
      24 Posts
      11k Views
      dbeatoD

      @scottalanmiller said in Elastix login page gives error HTTP ERROR 500 when login:

      @dbeato said in Elastix login page gives error HTTP ERROR 500 when login:

      @denny said in Elastix login page gives error HTTP ERROR 500 when login:

      systemctl stop firewalld disable selinux find /var/www/html/var/ -type d -exec chmod 755 {} ; find /var/www/html/var/ -type f -exec chmod 755 {} ;

      🙂

      Way to necro a post, security and firewall ar of the upmost importance. No system ever needs to be setup open this way....

      I think that he was being tongue in cheek.

      Okay, I didn't get it LOL

    • JaredBuschJ

      ownCloud 8.2.4 to 9.0.2 upgrade problem

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion owncloud owncloud 8.2 owncloud 9 upgrade error apache httpd
      5
      0 Votes
      5 Posts
      3k Views
      JaredBuschJ

      @scottalanmiller said in ownCloud 8.2.4 to 9.0.2 upgrade problem:

      have you tested yet?

      I have more systems that I can upgrade, but I have not done so yet.

    • JaredBuschJ

      Apache not starting on CentOS 7

      Watching Ignoring Scheduled Pinned Locked Moved Solved IT Discussion apache centos 7 centos httpd
      17
      1 Votes
      17 Posts
      6k Views
      JaredBuschJ

      @scottalanmiller said:

      Nothing scarier than things that fix themselves 😞

      Seriously upset about this. I will be rebooting the machine a few times today trying to make it do it again.

    • 1 / 1