12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #!/bin/bash
- if [ ! -e /root/domain ]; then
- domin=$(cat /etc/v2ray/domain)
- else
- domin=$(cat /root/domain)
- fi
- cat > /etc/nginx/sites-enabled/wildcard_subdomain << END
- server {
- server_name *.${domin};
- access_log /var/log/nginx/vps-access.log;
- error_log /var/log/nginx/vps-error.log error;
- root /home/vps/public_html;
-
- location / {
- index index.html index.htm index.php;
- try_files $uri $uri/ /index.php?$args;
- }
- location ~\.php$ {
- include /etc/nginx/fastcgi_params;
- fastcgi_pass 127.0.0.1:9000;
- fastcgi_index index.php;
- fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
- }
- location ~ /\.ht {
- deny all;
- }
- location ~* /(?:uploads|files)/.*\.php$ {
- deny all;
- }
- location ~* \.(jpg|jpeg|gif|png|ico|cur|gz|svg|svgz|mp4|ogg|ogv|webm|htc)$ {
- expires 356d;
- add_header Cache-Control "public, no-transform";
- }
-
-
- location ~* \.(css|js)$ {
- expires 2d;
- add_header Cache-Control "public, no-transform";
- }
- listen: 81;
- }
- END
- #listen 443 ssl;
- # ssl_certificate /etc/v2ray/v2ray.crt;
- # ssl_certificate_key /etc/v2ray/v2ray.key;
- systemctl daemon-reload
- systemctl restart nginx
|