7,962 questions
0
votes
0
answers
17
views
Nginx/Apache SSL Errors: “SSL_do_handshake() failed” and ModSecurity “Access Denied”
I’m encountering persistent issues with both Nginx and Apache2 on my server related to SSL handshakes and ModSecurity. Here are the error logs:
Nginx Error Logs:
DATETIME [crit] [PROCESS_ID]: *[...
-1
votes
0
answers
73
views
No route found for "POST /login" (from "http://xx.net/authentication/signin")
I'm having trouble deploying my web application on a server. I have created an API in Symfony using various components and a client in Angular with npm. It works perfectly fine on my local machine, ...
1
vote
1
answer
49
views
DuckDB, Django and apache2 Permission Denied in production
I have a problem with my duckdb database, that I really don't seem to understand.
After I created a .db database and put it in the apache2/Django webapp root and gave www-data access to it and its ...
0
votes
0
answers
17
views
How is Apache2 choosing which VirtualHost to use?
I have 2 apache sites enabled. The first is the default one 000-default.conf:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
ErrorLog ${APACHE_LOG_DIR}/...
1
vote
0
answers
39
views
Apache performance tuning for high traffic with MPM Event or MPM Prefork? [closed]
Hi i want to make some tuning on my new server, i tested with mpm_prefork and mpm_event and i didn't saw high differences..maybe I didn't tune correctly ?
Server:
Ampere® Altra® Q80-30CPU 80 cores / ...
-1
votes
1
answer
33
views
Combine Balancer and Rewrite Engine in Apache2
I am running an Apache reverse proxy pointing to a web app running on 127.0.0.1:8080 with this config:
<VirtualHost *:443>
ProxyPreserveHost On
RewriteEngine on
RewriteCond %{HTTP:...
0
votes
0
answers
12
views
"Powerpoint error saving file" when saving to Apache WebDAV
I have my own WebDAV server using Apache2 on Debian 12. I connected it as a Network Drive in Windows and created a Powerpoint file on it. When I manipulate that file and try to save it afterwards, the ...
0
votes
0
answers
17
views
Next js Apache2 Deployed code: page shows index js content on reload
I have a next js project like this:
root page.tsx and a login folder with its own page.tsx.
My dockerfile content is like this:
FROM node:lts-alpine AS build-stage
WORKDIR /next
COPY ./next/package*....
1
vote
0
answers
43
views
Apache2 CORS headers not updating after being set
I'm hosting both back and front end in different hosts in Debian 12 (bookworm). The backend is a PHP 8.2.26 api on localhost:81 , using apache2. Front end is Vue running from localhost:5173.
I kept ...
-1
votes
1
answer
21
views
Apache2 in Yocto build
I followed the instructions given in this post.
I can see that image is building fine. However httpd binary is not present on the target.
When I try to find any files related to httpd, they are not ...
0
votes
0
answers
4
views
Apache2 - Cache-Control configured twice
I have tested an Apache2 with testssl and was informed that Cache-Control should be configured twice.
I was able to confirm the same in another test.
It is an Apache2 2.4
On the one hand, the old ...
-1
votes
1
answer
29
views
caught SIGWINCH uploading a big file using apache2 and php
I serve a php page using apache2 that allows uploading files
// Check if the file was uploaded
if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_FILES['file'])) {
$file = $_FILES['file']...
0
votes
0
answers
18
views
Configure Apache to serve a path directly, while proxying everything else to /
I want Apache to serve the /filemanager path directly, while proxying everything else to /.
I tried to use this configuration, but I'm always redirected to /
<Location /filemanager>
...
0
votes
0
answers
29
views
php and http encoding chuncked post request
I'm using vscode in Ubuntu OS 64 to use an esp32 as client from server running in the ubuntu. The esp32 send POST request with encoding chunked and I'm trying to get this data using php. But I don't ...
0
votes
0
answers
25
views
Redirect port 8080 to a folder with apache
I would like to forward port 8080 to my Test folder. I can also reach this. But the website under port 8080 refers to /css/example.css. If I now call up my website 192.168.200.20/test, the CSS file is ...