Questions tagged [httpd]

httpd is a typical process name of a web server.

httpd (for Hyper Text Transport Protocol Daemon) is a typical name of the web server process.

Apache is the most popular web server that runs using this process name. It is also the name given to the new default server for OpenBSD 5.7 and on.

1448 questions
4
votes
1 answer

What controls the cleanup of the /tmp/systemd-private* directories?

It doesn't seem like the systemd-tmpfiles service cleans up these folders because I have files in /tmp/systemd-private-*-httpd.service-*/tmp/ that are 27ish days old (the last time httpd was restarted). If I'm reading the…
Exlipse
  • 41
  • 1
  • 2
3
votes
2 answers

How do I separate Apache server log entries for a domain that is different than my server's?

I'm using the following version of Apache ... httpd -v Server version: Apache/2.4.6 (CentOS) Server built: Apr 24 2019 13:45:48 I have a lot of entries in my /var/log/httpd/access_log file that are for domains that are not my domain…
Dave
  • 185
  • 1
  • 7
  • 20
3
votes
2 answers

SSLVerifyDepth explaination

Is there a comprehensive explanation how exactly does certificate chain verification work in apache httpd and how exactly does the SSLVerifyDepth parameter affect it? Possibly as pseudo-code. Most references just casually mention it.
David Balažic
  • 458
  • 1
  • 7
  • 19
3
votes
2 answers

Apache redirect to same path but with a # fragment

I'd like to append a #fragment for the client to read on certain URLs (and used by an SPA). RewriteEngine On RewriteBase / RewriteRule ^foo/? /foo#bar [QSA,NE,L,R=301] However, since #bar is a fragment in…
Orun
  • 157
  • 1
  • 6
3
votes
3 answers

Yum doesn't update httpd past version 2.2.3 on centos

I have a fresh CentOS vps (CentOS release 5.4 (Final)), and yum installs Apache/httpd version 2.2.3 but 2.2.14 is the latest release. Why doesn't yum install more recent updates?
Scott Coldwell
  • 468
  • 5
  • 9
3
votes
3 answers

Selinux 'var_t' base type warning

I am currently 'lost' in the CentOS Selinux forest. My setup involves setting up a WSGI socket in /var/www/demo/out which nginx uses to communicate with the UWSGI process. Whenever I request the page in my browser I get an nginx error. Why is this…
3
votes
2 answers

Getting compiled Python mod_wsgi module working on Apache server with SElinux enforcing mode

Trying to get my Python/Django app working on a RedHat Server in an ideal setting. Could not use the mod_wsgi from the package as it has some dependency issue when checking for modules in my virtual environment which uses python 3.6 (some dependency…
3
votes
2 answers

Cloudwatch logs - audit user access

I have a list of users in .passwd and access_log being uploaded to Cloudwatch. I need to make weekly report who from this list did access to server. Is there any way to automate this rather than checking logs manually for each user? There are…
3
votes
0 answers

Enable debug logging in vhost Apache 2.4.6

I have an apache server (I didn't do the setup). The httpd.conf is default and I see nothing about logging. in conf.d/vhost_xxx I see some config for my vhost. I add the LogLevel debug: ServerName xx …
DenCowboy
  • 313
  • 3
  • 6
  • 15
3
votes
0 answers

PKI Authentication in HTTPD using Active Directory (LDAP)

In my environment, an external entity provides a Root CA & Intermediate CA(s). They issue thousands of smartcards with PKI certificates for authentication. They provide the Client Authentication (OID 1.3.6.1.5.5.7.3.2) inside the extended key…
3
votes
0 answers

Why is apache ignoring my virtual host instructions

Background Admittedly, this is a nube question. What I want to do is to simply install the beanstalk console and make it run from say, app.beanstalk.com on my local machine What I have tried so I copied the files into my OSX webroot…
abbood
  • 1,127
  • 4
  • 13
  • 21
3
votes
2 answers

2 Apache Websites on Different Ports

I have a website(mysitedomain.com) which is running on http and https. Here is httpd.conf, Listen 80 Listen 443 Listen 81 ServerName mysitedomain.com DocumentRoot "c:/wamp/www/"
3
votes
0 answers

Limiting Request Body size to 5 GB in Apache httpd using LimitRequestBody directive

We are in the process of implementing certain controls in our installation of Apache httpd server. One of the directives, we are trying to use is LimitRequestBody. It states: This directive specifies the number of bytes from 0 (meaning unlimited)…
Wand Maker
  • 143
  • 1
  • 6
3
votes
0 answers

Bad Gateway error after upgrading back-end from Jetty 8 to 9

Update: this seems to be due to an Apache bug: https://bz.apache.org/bugzilla/show_bug.cgi?id=60330 I have a Java application that runs Jetty 8 as an embedded HTTP server. This is a back-end service, running on port 20000. The code of my actual…
3
votes
0 answers

php_value overrides with Apache using a front controller

I am trying to set specific server side value for virtual paths used to upload files. All my URLs are virtual and requested are dispatched by a front controller. I have the following config in my site's only .htaccess file:
Nicolas Bouvrette
  • 211
  • 1
  • 2
  • 9