init: migrate, flatten history and tweak from old repo
Old repo at <https://git.javalsai.tuxcord.net/deadvey/tuxcord.net> Co-authored-by: DeaDvey <deadvey@deadvey.com>
This commit is contained in:
+30
@@ -0,0 +1,30 @@
|
||||
pid ./var-nginx/nginx.pid;
|
||||
daemon off;
|
||||
|
||||
events {
|
||||
worker_connections 1024;
|
||||
}
|
||||
|
||||
http {
|
||||
include /etc/nginx/mime.types;
|
||||
|
||||
types_hash_max_size 4096;
|
||||
client_body_in_file_only off;
|
||||
|
||||
client_body_temp_path ./var-nginx/client-body;
|
||||
fastcgi_temp_path ./var-nginx/fastcgi;
|
||||
uwsgi_temp_path ./var-nginx/uwsgi;
|
||||
scgi_temp_path ./var-nginx/scgi;
|
||||
|
||||
access_log ./var-nginx/access.log;
|
||||
error_log ./var-nginx/error.log;
|
||||
|
||||
server {
|
||||
listen 8080;
|
||||
|
||||
location / {
|
||||
alias ./web-root/;
|
||||
ssi on;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user