1
0
Fork 0
mirror of https://github.com/Luzifer/redir-luzifer.io.git synced 2024-10-18 06:24:19 +00:00
redir-luzifer.io/nginx.conf

24 lines
360 B
Nginx Configuration File
Raw Permalink Normal View History

2016-10-11 10:32:28 +00:00
worker_processes 2;
error_log ./nginx.error.log;
worker_rlimit_nofile 8192;
pid nginx.pid;
events {
worker_connections 1024;
multi_accept on;
}
http {
access_log off;
server {
listen 80;
server_name localhost;
location / {
return 301 https://ahlers.me$request_uri;
}
}
}