Questions tagged [webserver]
A web server is a program that responds to network requests over the HTTP or HTTPS protocol.
603 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
3
votes
1
answer
37
views
MariaDB won’t start after php-updater change – "Unknown/unsupported storage engine: InnoDB"
I am running Nextcloud on Debian 11. Recently, I tried upgrading using php-updater, and afterwards MariaDB stopped working properly.
System details:
Debian 11
MariaDB 11.3.2
Apache with mpm_prefork (...
-1
votes
1
answer
100
views
Serving a file (e.g. in Apache) from a named pipe (made with mkfifo)
Let's say I use Apache, and that I am in /var/www/html/. I do:
mkfifo test.tar
tar cvf - ~/test/* > test.tar &
In a browser, when trying to download http://localhost/test.tar I get:
...
0
votes
0
answers
44
views
How to make caddy run in/from a directory as a service in Ubuntu 20.04.2?
I installed caddy with "sudo apt install caddy" and have everything setup and working, but I also want to run caddy automatically from boot.
When I use
sudo systemctl enable caddy
and ...
0
votes
2
answers
256
views
Lighttpd web server - show files in folder
I have Lighttpd web server on my Ubuntu server. It works as expected. But now I want that it shows files in folders. I follow the instructions, but it doesn't work.
This is lighttpd.conf file:
server....
2
votes
2
answers
317
views
CSS not updating on a `http.server` website
I have a website using the Python http.server module and it was working great. Earlier this day I wanted 2 users to work on the same files (HTML, CSS, JS) so I set the chmod tag to 777.
The problem is ...
0
votes
1
answer
87
views
What does /etc/resolve.conf actually contain - does it contain the server's own IP or does it contain the upstream delegator?
I have looked at various resolve.conf questions on here and other documentation but they're talking about DNS as an external thing, which doesn't help me distinguish in this case.
I have a server. ...
1
vote
1
answer
74
views
WebSocket Error "Unexpected close, re-opening websocket" after moving Focalboard to a subdirectory in Nginx
I'm trying to configure Focalboard to run in a specific subdirectory using Nginx. I followed the steps from the official Focalboard documentation and was able to set it up normally. However, after ...
0
votes
0
answers
64
views
"Couldn't connect to server" outside of the server
I have a VPS instance running FreeBSD. I started a simple web server on port 80.
When I am ssh'd into the server, I can reach the server:
$ curl <server-ip-address>
hello
However, when I try to ...
0
votes
1
answer
155
views
NGINX x-forwarded-proto not working
I have an ASP.NET app hosted in a Docker container, with a NGINX reverse proxy, hosted on a VPS. When running in production, the x-forwarded-proto header isn't being passed.
From what I understand, ...
0
votes
1
answer
55
views
What are some options for automatically provisioning virtual servers?
I operate a small web hosting company that sells shared hosting and virtual private servers to customers. We are currently utilising WHMCS to automate our processes and all products we offer are ...
1
vote
1
answer
780
views
A process called "Opera" (the browser is not installed) constantly uses 100% of my CPU. Does anyone know what this is?
I have a server box I use to host various web applications and game servers for friends. I recently connected to it to check how it was running, and discovered a program "Opera" trying to ...
0
votes
1
answer
737
views
How do you export client certificate for Android to make it work with server?
I posted here earlier today regarding my certificate issue. This is the last one I have. I have setup a new self-signed certificate chain with setup below by following this guide https://dev.to/berk/...
3
votes
5
answers
175
views
Raspbery (Ubuntu install) running server UI server - how to access?
I have an Raspbery pie installed with ubuntu server, running Prefect. When I use my personal pc, I can get Prefect to run and start up an UI server:
>>> prefect server start
Check out the ...
0
votes
1
answer
132
views
How to go about moving my webserver data onto a (tmpfs) RAM disk? (experiment)
For How to go about moving my webserver data onto a (tmpfs) RAM disk? (experiment), I formulated some ideas, notes, and stuff around. Need to hear if my whole idea is sound and solid, and that such ...
0
votes
0
answers
61
views
How to verify/test POST operation with curl to thttpd?
I am working on an embedded Linux system (kernel-5.10). I setup a thttpd web server in my system, and want to test it with curl utility.
The /etc/thttpd.conf is as follows,
dir=/var/www/data
cgipat=**....