Navigation

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

    • P

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

      4
      0
      Votes
      4
      Posts
      110
      Views

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

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

      3
      0
      Votes
      3
      Posts
      69
      Views

      @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
    • httpd dead but pid file exists
      IT Discussion • apache rhel 5.11 • • wirestyle22  

      85
      0
      Votes
      85
      Posts
      515
      Views

      @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.
    • 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
      443
      Views

      Thanks btw @coliver. Appreciate the help.
    • Massive speed increase when switching WordPress from apache to nginx
      IT Discussion • nginx apache • • IRJ  

      14
      4
      Votes
      14
      Posts
      159
      Views

      P

      @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.
    • SOLVED Tracking Down an Apache & WordPress Memory Leak
      IT Discussion • linux ubuntu wordpress apache httpd ubuntu 19.04 prefork • • scottalanmiller  

      5
      1
      Votes
      5
      Posts
      261
      Views

      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.
    • SOLVED WordPress Cutover Main Page Works, but Secondary Pages Do Not
      IT Discussion • linux ubuntu wordpress nginx apache php cloudflare ubuntu 19.04 varnish • • scottalanmiller  

      19
      0
      Votes
      19
      Posts
      299
      Views

      Well let's talk about fedora and updating killing a laptop lol....
    • Why pay more? Host a static website in Azure with cut costs
      Starwind • storage microsoft azure server apache • • Oksana  

      1
      1
      Votes
      1
      Posts
      104
      Views

      No one has replied

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

      10
      1
      Votes
      10
      Posts
      219
      Views

      Worth noting that the issue comes back when you upgrade to Fedora 31 as well. Same fix still applies.
    • Run your dynamic websites and servers with AMP (Apache, MySQL, and PHP) stack
      Starwind • ubuntu mysql apache php highavailability • • Oksana  

      2
      1
      Votes
      2
      Posts
      85
      Views

      FLAMP >
    • SOLVED WordPress admin page redirecting to IP
      IT Discussion • wordpress apache lets encrypt • • IRJ  

      4
      0
      Votes
      4
      Posts
      88
      Views

      @JaredBusch said in WordPress admin page redirecting to IP: Is the site URL correct in the settings Been there many times
    • NGINX vs Apache
      IT Discussion • nginx apache webserver • • WLS-ITGuy  

      10
      2
      Votes
      10
      Posts
      274
      Views

      @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.
    • Fedora 29 Apache HTTPD Keeps Adding ssl.conf
      IT Discussion • linux fedora ssl apache fedora 29 httpd • • scottalanmiller  

      13
      0
      Votes
      13
      Posts
      451
      Views

      @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.
    • CentOS7 Server Apache Disable old TLS for higher versions
      IT Discussion • apache tls httpd tls 1.2 tls 1.0 • • DustinB3403  

      12
      3
      Votes
      12
      Posts
      1068
      Views

      @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
    • P

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

      25
      0
      Votes
      25
      Posts
      879
      Views

      @scottalanmiller Yeah both of my webservers use mariadb for example
    • Fedora Update Breaks httpd
      IT Discussion • linux fedora apache web server • • NashBrydges  

      18
      1
      Votes
      18
      Posts
      1161
      Views

      @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.
    • Apache Struts - Critical Security Flaw
      News • apache breach vulnerability httpd equifax struts millions • • DustinB3403  

      21
      0
      Votes
      21
      Posts
      2312
      Views

      @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.
    • SOLVED Certbot Apache plugin broken in Fedora 26
      IT Discussion • linux ssl apache lets encrypt fedora 26 ssl certificates tls certbot fredora • • brianlittlejohn  

      20
      2
      Votes
      20
      Posts
      3785
      Views

      @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..
    • WordPress Tuning with MemCache
      IT Discussion • wordpress apache performance memory tuning • • DustinB3403  

      4
      1
      Votes
      4
      Posts
      945
      Views

      Thank you, I'll investigate from here.
    • Installing Varnish Cache to a LAMP Stack on Fedora 25 with SaltStack
      IT Discussion • linux fedora saltstack apache salt fedora 25 web server lamp state file varnish cache • • scottalanmiller  

      3
      2
      Votes
      3
      Posts
      1194
      Views

      @aaronstuder said in Installing Varnish Cache to a LAMP Stack on Fedora 25 with SaltStack: @scottalanmiller said in Installing Varnish Cache to a LAMP Stack on Fedora 25 with SaltStack: Varnish Cache cannot handle TLS connections, so Apache will continue to server HTTPS on port 443, for now at least. That's unfortunate I use Varnish on Cloudways, but everything is HTTPS... Does that mean Varnish is doing nothing? It just means that an SSL layer has to be in front of it. Nginx is used on most platforms to handle SSL.
    • Virtual Hosts for Apache Using SaltState
      IT Discussion • linux saltstack apache salt lamp state file state machine • • scottalanmiller  

      1
      2
      Votes
      1
      Posts
      589
      Views

      No one has replied

    • Using SaltStack to Install High Performance LAMP on Fedora 25
      IT Discussion • linux saltstack apache salt mariadb php lamp httpd php 7 • • scottalanmiller  

      12
      1
      Votes
      12
      Posts
      2301
      Views

      C

      @scottalanmiller How are you liking Salt Stack?
    • Apache Struts Exploit
      IT Discussion • linux security apache web server • • stacksofplates  

      1
      0
      Votes
      1
      Posts
      525
      Views

      No one has replied

    • Building a LAMP Server on Fedora 25 with SaltStack
      IT Discussion • linux fedora saltstack mysql apache salt devops mariadb php fedora 25 lamp • • scottalanmiller  

      1
      3
      Votes
      1
      Posts
      1116
      Views

      No one has replied

    • Zabbix and Zimbra in Centos
      IT Discussion • linux centos apache zimbra zabbix • • Lakshmana  

      5
      0
      Votes
      5
      Posts
      1275
      Views

      Did you use my instructions for Zimbra with Apache on CentOS? https://mangolassi.it/topic/8344/installing-zimbra-email-8-6-on-centos-7
    • Enforce Apache Ownership of Files on CentOS, RHEL and Fedora with SaltStack
      IT Discussion • linux centos fedora rhel saltstack apache salt web server • • scottalanmiller  

      6
      3
      Votes
      6
      Posts
      1111
      Views

      Just as a comparison, here's what it would look like with Ansible: name: Recursively own html files file: path: /var/www/html owner: apache group: apache state: directory recurse: yes
    • SOLVED Is there a best practice for the location of the root folder of a webapp?
      IT Discussion • nginx best practices apache web servers • • Romo  

      2
      1
      Votes
      2
      Posts
      758
      Views

      Location matters very little. I would stick to the standards.
    • Install Odoo 10 on CentOS 7 Formerly OpenERP
      IT Discussion • linux centos centos 7 apache reverse proxy erp odoo openerp odoo 10 rosehosting • • mlnews  

      3
      2
      Votes
      3
      Posts
      1639
      Views

      I might put this on my project list one of these days.
    • Configure a Basic Apache HTTP Virtual Host for Most Linux
      IT Discussion • linux centos fedora rhel apache korora httpd webserver virtualhost • • scottalanmiller  

      5
      2
      Votes
      5
      Posts
      1474
      Views

      @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.
    • Installing a Basic LAMP Stack on CentOS 7
      IT Discussion • linux centos centos 7 rhel mysql apache mariadb php rhel 7 lamp httpd • • scottalanmiller  

      20
      4
      Votes
      20
      Posts
      3745
      Views

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