Questions tagged [web-server]
Refers to the software or hardware that make up a webserver, delivering content on a private or public website.
3,323 questions
0
votes
0
answers
54
views
Usage of SSL directives in Apache for backend-only https reverse-proxy?
I've recently migrated an existing Apache2 webserver config from a "traditional" Debian-based linux machine to an AWS EKS environment using the hub.docker Httpd Docker official image instead....
0
votes
1
answer
371
views
Apache error "AH00016: Configuration Failed"
I get Apache error
AH00016: Configuration Failed
in Apache error.log.
The Apache service is not starting because of this error.
Any idea what causes the error?
Anybody had such error?
Edit: sudo ...
0
votes
0
answers
77
views
How to troubleshoot "Too many open files error" in web server?
I had a server which was based on apache; it was used to serve multiple image tiles of a map. I thought of improving it by shifting it to HTTP3, for this I had to shift to nginx and quick protocol. ...
0
votes
0
answers
117
views
HAProxy Returns 503 Error When Accessing Backend via Proxy, But Direct Backend Access Works
I’m encountering an issue with my HAProxy setup. I have configured HAProxy to load balance multiple backends (web, API, and IoT services) using primary and secondary servers.
The problem is: when I ...
0
votes
0
answers
42
views
How to setup SSL path when using apache Dynamically Configured Mass Virtual Hosting
I seen that apache can have multiple dynamic virtual hosts, each on it's own folder using Dynamically Configured Mass Virtual Hosting
Without defining separate VirtualHost for each individual domain.
...
3
votes
1
answer
91
views
Mitigating High Volume Distributed Attack on Port 443 Targeting GET?POST /moodlee/index.php
Problem Description
I'm experiencing a distributed attack targeting port 443 on my server. The attack has these characteristics:
Originates from numerous random IP addresses
Automatically rotates IPs ...
0
votes
1
answer
93
views
can a server select both TLS scheme and certificate based on SNI?
My limited understanding on this subject is that using the SNI (set to the domain name in URL by default) header field in the client request, a TLS server can internally pick a different certificate ...
0
votes
0
answers
106
views
Sessions of apache webserver expiring - forcing logout of users (non php)
I have got some webservers running behind a proxy-server. These webservers are running an application, but it seems user are getting a "session expired" error. This error forces a logout and ...
0
votes
2
answers
147
views
Will deploying by changing symlink affect currently running requests?
It's a popular strategy for the web server to reference the current build via symlink, and to switch the symlink to deploy a new build
/var/www/current -> /var/www/build-1
Is this a problem for ...
0
votes
0
answers
61
views
ASP.net web server gives error service unavailable
When accessing a specific URL, we receive the error "Service is unavailable", preventing us from accessing our account.
Could you please assist us in resolving the issues?
-1
votes
3
answers
2k
views
IIS 10: How to remove server and NET headers
The setup is as follows:
Windows Server 2022 Standard with IIS 10.
ASP .NET 4.8 based application, running with Integrated mode and Application Pool Identity.
Im trying to remove the following headers:...
0
votes
1
answer
1k
views
Traefik HTTP Basic Auth for Dashboard not working
In the end, after a LOT of time spent on configuration, I’m out of ideas. Something that’s supposed to be quite simple is becoming rather complicated. Hopefully, someone else can help me find the ...
0
votes
0
answers
62
views
convention for http blocks in the new nginx configuration file convention
I have been using and installing nginx from ppa:ondrej/nginx on Ubuntu
In the /etc/nginx/conf.d folder I have several configurations in the http block such as log format, geoip2, etc. so that they can ...
1
vote
2
answers
601
views
Roundcube SMTP remote server 465 SSL port no connect
EDITED!
Without SSL, only the server address and port 25 works properly, but i want to use SSL.
Original:
I use an old server for mail service, and i use a new server for webpages.
I installed ...
1
vote
0
answers
501
views
Wait for html2canvas to finish, before showing "successful" message
I'm pretty new to JavaScript development.
I have a PHP/HTML webpage where users can edit things and once they're done, they click on "Save" and it saves changes to the database. This works ...