cefda86795
Old repo at <https://git.javalsai.tuxcord.net/deadvey/tuxcord.net> Co-authored-by: DeaDvey <deadvey@deadvey.com>
31 lines
514 B
Nginx Configuration File
31 lines
514 B
Nginx Configuration File
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;
|
|
}
|
|
}
|
|
}
|