summaryrefslogtreecommitdiff
path: root/public/fs/etc/nginx/nginx.conf
diff options
context:
space:
mode:
authorroot@culturestrings <root@culturestrings>2020-05-18 08:38:41 +0000
committerroot@culturestrings <root@culturestrings>2020-05-18 08:38:41 +0000
commit8f5160bf28a3c4e8e61425ab627ea05dfffd8943 (patch)
tree0d533b624e8a499a98dfd1dc23381aaf2098bdf3 /public/fs/etc/nginx/nginx.conf
parent0f11a66864ce98a8a9a58af382bd8efbff471f22 (diff)
downloadculturestrings-8f5160bf28a3c4e8e61425ab627ea05dfffd8943.tar.bz2
culturestrings-8f5160bf28a3c4e8e61425ab627ea05dfffd8943.tar.xz
web: added nginx's common configuration files.
Diffstat (limited to 'public/fs/etc/nginx/nginx.conf')
-rw-r--r--public/fs/etc/nginx/nginx.conf59
1 files changed, 59 insertions, 0 deletions
diff --git a/public/fs/etc/nginx/nginx.conf b/public/fs/etc/nginx/nginx.conf
new file mode 100644
index 0000000..9b92ab4
--- /dev/null
+++ b/public/fs/etc/nginx/nginx.conf
@@ -0,0 +1,59 @@
+worker_processes 1;
+
+load_module lib64/nginx/modules/ngx_http_fancyindex_module.so;
+
+events {
+ worker_connections 1024;
+ use epoll;
+}
+
+
+http {
+ include mime.types;
+ default_type application/octet-stream;
+
+ sendfile on;
+ tcp_nopush on;
+
+ keepalive_timeout 65;
+
+ include conf.d/*.conf;
+
+ server {
+ listen [::]:80 default_server ipv6only=off reuseport;
+ server_name localhost;
+
+ location / {
+ root /srv/www/htdocs/;
+ index index.html index.htm;
+ }
+
+ error_page 500 502 503 504 /50x.html;
+
+ location = /50x.html {
+ root /srv/www/htdocs/;
+ }
+ }
+
+ server {
+ listen [::]:443 default_server ssl http2 ipv6only=off reuseport;
+ server_name localhost;
+
+ ssl_certificate /etc/nginx/certs.d/culturestrings.org/ssl/fullchain.pem;
+ ssl_certificate_key /etc/nginx/certs.d/culturestrings.org/ssl/privkey.pem;
+
+ location / {
+ root /srv/www/htdocs/;
+ index index.html index.htm;
+ }
+
+ error_page 500 502 503 504 /50x.html;
+ location = /50x.html {
+ root /srv/www/htdocs/;
+ }
+
+ }
+
+ include conf.d/ssl_params;
+ include vhosts.d/*.conf;
+}