Embed Notice
HTML Code
Corresponding Notice
- Embed this notice
Zergling_man (zergling_man@sacred.harpy.faith)'s status on Wednesday, 25-Sep-2024 14:46:32 JSTZergling_man @realman543 @dcc Alternately, install nginx, set /etc/nginx/nginx.conf to the following, then run:
user http;
worker_processes auto;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 80 default_server;
listen [::]:80 default_server;
root /PATH/TO/SERVE/HERE;
}
}
I'm not convinced all of that's necessary.