Jump to content

Socxco

Newbie
  • Posts

    8
  • Joined

  • Last visited

Profile Information

  • Software
    IPS4
  • Version
    4.2.7

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Socxco's Achievements

Rookie

Rookie (2/14)

  • First Post
  • Week One Done
  • One Month Later
  • One Year In
  • Reacting Well

Recent Badges

1

Reputation

  1. They seem to be at the end of the features they wanted to implement, based solely on my observation with how 4.3 and 4.2 were rolled out, I would guess late Q1 of 2019.
  2. I normally do not get anything for myself, but after working more hours than I need to at my job I decided to get an Oculus rift. So far I have been loving it!
  3. What do you mean exactly, do you wish to run the plesk panel as just a LAMP server with a UI and then have cloud flare as the dns service. If so just add whatever domain you have to point to the cloudflare name servers and then in cloudfalre make that domain A and AAAA records point to your server IP.
  4. FiveM is pretty awesome. I have not played sense the time they started to roll out the better user syncing so that more people could be on a server. Are you supporting that or is it still in beta.
  5. Vesta Nginx STRICT SSL ips4 template. This is not a guide on how to use the template, just rather a general template for more experienced users. This template is also based on community recommended nginx patterns and can be tweaked to your liking. nginx php-fpm templates are stored under /usr/local/vesta/data/templates/nginx/php-fpm/ Add the following files in that directory. ips4.tpl server { listen %ip%:%web_port%; server_name %domain_idn% %alias_idn%; root %docroot%; include %home%/%user%/conf/web/nginx.%domain%.conf*; return 301 https://%domain_idn%$request_uri; } ips4.stpl server { listen %ip%:%web_ssl_port%; server_name %domain_idn% %alias_idn%; root %sdocroot%; index index.php access_log /var/log/nginx/domains/%domain%.log combined; access_log /var/log/nginx/domains/%domain%.bytes bytes; error_log /var/log/nginx/domains/%domain%.error.log error; ssl on; ssl_certificate %ssl_pem%; ssl_certificate_key %ssl_key%; include %home%/%user%/conf/web/snginx.%domain%.conf*; if ($host = '%alias_idn%' ) { return 301 https://%domain_idn%$request_uri; } client_max_body_size 100M; # Friendly URL "rewrite" rules location / { try_files $uri $uri/ @ips; } # Friendly URL "rewrite" rules location /api/ { try_files $uri $uri/ @ips_api; } include /etc/nginx/conf.d/ips/protect_upload_directories; include /etc/nginx/conf.d/deny_dotfiles; location ~* ^.+\.(?:jpg|jpeg|gif|css|png|js|ico|xml|htm|swf|cur)$ { try_files $uri @ips404 access_log off; expires 2w; } # Lock down access to the AdminCP location ~ ^/admin/.+\.php$ { #allow 127.0.0.1; #deny all; #auth_basic "This page is restricted to administrators"; #auth_basic_user_file $document_root/admin/.htpasswd; try_files $uri @ips404; include /etc/nginx/conf.d/php_fastcgi_params; fastcgi_pass %backend_lsnr%; } # Execute the requested PHP script if it exists, otherwise pass off to IPS location ~ \.php$ { try_files $uri @ips; include /etc/nginx/conf.d/php_fastcgi_params; fastcgi_pass %backend_lsnr%; fastcgi_buffers 38 4k; fastcgi_buffer_size 16k; } # Pass off not found errors to IPS' 404 handler location @ips404 { include /etc/nginx/conf.d/php_fastcgi_params; fastcgi_pass %backend_lsnr%; fastcgi_param SCRIPT_FILENAME $document_root/404error.php; fastcgi_param SCRIPT_NAME 404error.php; } # Send rewritten requests directly to IPS location @ips { include /etc/nginx/conf.d/php_fastcgi_params; fastcgi_pass %backend_lsnr%; fastcgi_param SCRIPT_FILENAME $document_root/index.php; fastcgi_param SCRIPT_NAME /index.php; fastcgi_buffers 38 4k; fastcgi_buffer_size 16k; } # Send rewritten requests directly to IPS API location @ips_api { include /etc/nginx/conf.d/php_fastcgi_params; fastcgi_pass %backend_lsnr%; fastcgi_param SCRIPT_FILENAME $document_root/api/index.php; fastcgi_buffers 38 4k; fastcgi_buffer_size 16k; } location ~* "/\.(htaccess|htpasswd)$" { deny all; return 404; } }
×
×
  • Create New...