wiki/pages/en/server/services/nginx.txt

57 lines
1.3 KiB
Text
Raw Normal View History

====== nginx ======
nginx (pronounced "engine X"), is a free, open-source, high-performance HTTP server and reverse proxy, as well as an IMAP/POP3 proxy server, written by Igor Sysoev in 2005. nginx is well known for its stability, rich feature set, simple configuration, and low resource consumption.
Check also [[/en/server/services/nginx]] and [[/en/server/services/ssl|ssl]].
===== Package =====
<code>
pacman -S nginx
</code>
===== Configuration =====
<code>
mkdir /etc/nginx/{sites-enabled,sites-available,conf.d}
cp /etc/nginx/nginx.conf /etc/nginx/nginx.conf.original
nano /etc/nginx/nginx.conf
</code>
<code>
user http;
worker_processes auto;
worker_cpu_affinity auto;
events {
multi_accept on;
worker_connections 1024;
}
http {
charset utf-8;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
server_tokens off;
log_not_found off;
types_hash_max_size 4096;
client_max_body_size 16M;
# MIME
include mime.types;
default_type application/octet-stream;
# logging
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log warn;
# load configs
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}
</code>
===== Start =====
<code>
systemctl enable --now nginx.service
</code>