91,749 questions
1
vote
0
answers
48
views
Numpy importing error in mod_wsgi app on Fedora 43
I'm getting an error when importing numpy from an Apache mod_wsgi application on Fedora 43 and 42. It does not happen in Rocky Linux 9, the production server.
app.wsgi:
import sys
sys.path.insert(0, '/...
-1
votes
0
answers
55
views
Cannot run my PHP Apache PHP-FPM website locally on MacOS because of weird ObjectiveC error: objc[1495]: +[NSPlaceholderString initialize]
This issue recently popped up after a macOS update probably Tahoe 26 but when I try to request a page of my website that uses Homebrew Apache PHP-FPM Memcached with PostgreSQL and PHP 8.4 files on OSX ...
Best practices
0
votes
2
replies
54
views
How to install SSL for your domain by XAMPP on windows machine
You will got these files by your ssl provider :
certificate.crt
server.key
ca_bundle.crt
Configuration SSL by xampp server in windows servers.
SSLCertificateKeyFile : "F:/xampp/apache/conf/ssl....
0
votes
1
answer
21
views
apache auth-kerb and a user list to allow doesnt work
I guess the solution is quite easy, but I just dont see the point:
We had a kerb auth working, but s'one destroyed it quite a while ago.
Now I dont get it working again:
kerb authentication works and ...
0
votes
0
answers
83
views
Setup local SSL certificate for HTTPS in Google Chrome [closed]
I got a Laravel App running on an Apache server. I've configured VirtualHost to locally access the app with URL:
https://www.infoalquiler.com.ar/
Despite the app is working properly, I'm getting a &...
0
votes
0
answers
29
views
MaxClients reached in Apache but raising the value does not solve the issue [closed]
Today we started having issues with our server (only LAMP server on RHEL). We have tried increasing our maxclient numbers but it doesn't fix the issue. Restarting apache gives brief access but it ...
0
votes
0
answers
42
views
Explanation of Apache 2.4 Require Directives Ordering? [closed]
This is for Apache 2.4.58.
Why is it that the following order of Location/LocationMatch will only evaluate the latter, but if it is reversed that it will evaluate both as intended?
<Location /basic/...
0
votes
0
answers
137
views
404 on certain files on select devices after repeated visits [closed]
I run a webserver on my local network to host my movie collection. I also have a custom android app running on an amazon fire stick. Recently I have been working to enable video playback from external ...
0
votes
0
answers
19
views
Hosting an app, locally, exposed to the outside world using a subdomain and virtual DIR.. where does the SSL cert live? [migrated]
I'm hosting an app on a NAS, port 3000.
Works great.
I have a Pi5 that runs Apache and a few web projects.
Works great.
I've got a static IP from my ISP and can send traffic to via my domain name and ...
0
votes
0
answers
87
views
Weird behavior, htaccess work in both ways?
Request https://example.com/ , htacces file :
RewriteEngine On
RewriteRule ^$ /one
RewriteRule ^/one /two [R]
result I get https://example.com/two, remove the slash in the second RewriteRule
...
Best practices
0
votes
0
replies
34
views
Apache mpm_event + SSL: Now more performant than mpm_worker?
The last time I had to choose between using mpm_worker and mpm_event, it was my understanding that mpm_event was functionally equivalent to just using mpm_worker if SSL was enabled and so it couldn't ...
-2
votes
1
answer
78
views
CORS Error: “Access-Control-Allow-Origin does not match ‘http://localhost:5173’” [duplicate]
I'm getting a CORS error when trying to fetch data from my local PHP backend:
Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at https://localhost/login.php.
...
1
vote
1
answer
68
views
Apache returns 404 only when accessed through CloudFront (works fine via ELB directly)
Our web service is running on EC2 with Apache. We have the following setup:
Service A -> ELB -> Service B API
In this case, Apache on Service B shows in rewrite.log that the rewrite rule was ...
0
votes
0
answers
54
views
Apache 2.4 reverse proxy: extremely slow or timing out only on latest iOS/macOS (HTTP/2), while Android and Windows are fast
Apache 2.4 Reverse Proxy + TLS: iOS/macOS Only — Proxied POST Requests Take 60+ Seconds (Android/Windows <1s)
I'm running Apache HTTPD 2.4.46 (custom build on RHEL) as a TLS terminator and reverse ...
-1
votes
1
answer
64
views
Using RewriteRule to Server Content from One Page to Another [closed]
I'm using a CMS that doesn't allow me to change URL structure. It's find for 99.9% of my pages, but there are two that I'd like to have specific URLs. RewriteRule directives work for me in my ....