Questions tagged [webserver]
A web server is a program that responds to network requests over the HTTP or HTTPS protocol.
603 questions
0votes
1answer
24views
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....
2votes
2answers
147views
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 ...
0votes
1answer
52views
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. ...
1vote
1answer
28views
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 ...
0votes
0answers
42views
"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 ...
0votes
0answers
17views
how to make openresty support pdf partial download
I am using react pdf 9.1.0 to show the pdf in browser, now I want to make the react pdf support the partial download. The server side was using openresty, I read the pdf.js manual that told me to make ...
0votes
1answer
93views
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, ...
0votes
1answer
36views
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 ...
0votes
0answers
55views
How can I archive my website for offline/online use (wget) that needs multiple domains?
I'm trying to archive an old PHP website offline. The goal is to have all the website data in one folder ... So that I can browse through everything offline I can upload the folder and then browse ...
1vote
1answer
563views
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 ...
0votes
1answer
536views
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/...
3votes
5answers
147views
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 ...
0votes
1answer
107views
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 ...
0votes
0answers
45views
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=**....
0votes
1answer
48views
When should a service that runs a localhost-binding program be started?
I have a service that runs a program that binds to a localhost port. Right now I'm setting it up this way: [Unit] Wants=network-online.target After=network-online.target [Install] WantedBy=multi-user....