添加 'fivem.net.conf'

master
Akkariin Meiko 2019-11-21 09:03:28 -06:00
parent 0b8da51dbe
commit 2a96461bea
1 changed files with 49 additions and 0 deletions

49
fivem.net.conf Normal file
View File

@ -0,0 +1,49 @@
server {
listen 80;
listen 443 ssl;
ssl_certificate /usr/local/nginx/conf/ssl/fivem.net.crt;
ssl_certificate_key /usr/local/nginx/conf/ssl/fivem.net.key;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers EECDH+CHACHA20:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5;
ssl_prefer_server_ciphers on;
ssl_session_timeout 10m;
ssl_session_cache builtin:1000 shared:SSL:10m;
ssl_buffer_size 1400;
add_header Strict-Transport-Security max-age=15768000;
ssl_stapling on;
ssl_stapling_verify on;
server_name *.fivem.net;
access_log /data/wwwlogs/fivem.net_nginx.log combined;
index index.html index.htm index.php;
root /data/wwwroot/fivem.net/;
if ($ssl_protocol = "") { return 301 https://$host$request_uri; }
rewrite /(.*) /index.php;
#limit_conn perip 100;
limit_rate 2048k;
include /usr/local/nginx/conf/rewrite/none.conf;
#error_page 404 /404.html;
#error_page 502 /502.html;
add_header 'Access-Control-Allow-Origin' '*';
location ~ [^/]\.php(/|$) {
fastcgi_pass 127.0.0.1:9000;
#fastcgi_pass unix:/dev/shm/php-cgi.sock;
fastcgi_index index.php;
include fastcgi.conf;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|flv|mp4|ico)$ {
expires 30d;
access_log off;
}
location ~ .*\.(js|css)?$ {
expires 7d;
access_log off;
}
location ~ /\.ht {
deny all;
}
}