Jump to content

Carlos Dorelli

Member
  • Posts

    83
  • Joined

  • Last visited

  • Days Won

    8

Carlos Dorelli last won the day on August 9 2022

Carlos Dorelli had the most liked content!

2 Followers

Recent Profile Visitors

2,690 profile views

Carlos Dorelli's Achievements

Conversation Superstar

Conversation Superstar (5/8)

11

Reputation

  1. Hi, this will help you: https://docs.tcadmin.com/category/web-server-configurations I have old videos following step by step in both operational systems. If you need, here it is:
  2. Oh, this topic is really funny. I prefer to pay, it's a really good service and I like the support. The quality is good asf.
  3. Remember to open the firewall port and disable the proxy in CloudFlare. Did it twice today and both worked.
  4. Anyway, if you need help just ask for it on Discord (Deleted User 08246b21#6924)
  5. Of course the tutorial won't work if you are doing something wrong... I re-tested yesterday and it's everything okay with it
  6. https://forum.mtasa.com/topic/86104-nginx-problem-with-fast-download/ + The code in the tutorial is for Windows, you will need to adapt it. I also recommend use another web server. Just make a good configuration that everything will work well. Or just wait for day one of 2022 that a lot of new tutorials will be released here and in my channel.
  7. Me chama no Discord ~ Carlos Dorelli#9932
  8. To have the same Client Area you need to buy WHMCS then integrate TCAdmin Module with it. WHMCS ~> https://whmcs.com/ How to Integrate the module ~> https://help.tcadmin.com/TCAdmin2_advanced_module_for_WHMCS
  9. I'm not going to work with gamehosting anymore so I'm leaving some content on a youtube channel related to it. I'm posting some TCAdmin tutorials that for most of the users here probably it's not useful but I hope it help someone any day. Oops: I'm finishing the subtitles to english. 1. How to install the panel https://youtu.be/wgSFvKlOYR0 2. Configure the TCAdmin website to run with IIS https://youtu.be/MJVULliGlh8 Every new video related to the panel I will update the topic here. Have fun
  10. Hello, I've posted a time ago here on TCAdmin forum in the section of Tips & Tricks for 2.0 a script that allow FastDL for Multi Theft Auto using nginx. This script is exclusivelly for Windows at the moment but I'm working to bring it to Linux. I'm new to Linux on TCAdmin and nginx so I'm looking for someone with good experience that can help me with it. My Discord: Eldremor#9214
  11. Hello, I'm new at using TCAdmin on Linux and I tried to install phpMyAdmin on nginx but something went wrong I've installed the phpMyAdmin and added the file include snippets/phpmyadmin.conf; as a include in my nginx default.conf. upstream tcadmin-fcgi { ip_hash; server unix:/home/tcadmin/Temp/fastcgi-socket-1; keepalive 32; } upstream tcadmin-fcgi-mvc { ip_hash; server unix:/home/tcadmin/Temp/fastcgi-socket-mvc-1; keepalive 32; } server { #the following line is required if you want to configure with Let's Encrypt server_name ryzen.timberhost.com.br; fastcgi_temp_path /home/tcadmin/Temp 1 2; client_body_temp_path /home/tcadmin/Temp 1 2; #access_log /home/tcadmin/Logs/nginx.log; root /home/tcadmin/ControlPanel.MVC; index index.html index.htm default.aspx Default.aspx; include snippets/phpmyadmin.conf; #Support for Let's encrypt tools location /.well-known { try_files $uri $uri/ =404; } #Everything else served by fastcgi server location / { root /home/tcadmin/ControlPanel.MVC; fastcgi_ignore_client_abort on; fastcgi_pass tcadmin-fcgi-mvc; include fastcgi_params; fastcgi_split_path_info ^(.+\.as[pmh]x)(.*)$; fastcgi_param PATH_INFO $fastcgi_path_info; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_keep_conn on; fastcgi_buffering off; fastcgi_read_timeout 600s; gzip on; client_max_body_size 100m; } #Everything else served by fastcgi server location /Aspx { root /home/tcadmin/ControlPanel; fastcgi_ignore_client_abort on; fastcgi_index Default.aspx; fastcgi_pass tcadmin-fcgi; include fastcgi_params; fastcgi_split_path_info ^(.+\.as[pmh]x)(.*)$; fastcgi_param PATH_INFO $fastcgi_path_info; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_keep_conn on; fastcgi_buffering off; fastcgi_read_timeout 600s; gzip off; client_max_body_size 100m; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/ryzen.timberhost.com.br/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/ryzen.timberhost.com.br/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot } server { if ($host = ryzen.timberhost.com.br) { return 301 https://$host$request_uri; } # managed by Certbot server_name ryzen.timberhost.com.br; listen 80; return 404; # managed by Certbot } The file phpmyadmin.conf contains this code: location /phpmyadmin { root /usr/share/; index index.php index.html index.htm; location ~ ^/phpmyadmin/(.+\.php)$ { try_files $uri =404; root /usr/share/; fastcgi_pass unix:/run/php/php7.2-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include /etc/nginx/fastcgi_params; } location ~* ^/phpmyadmin/(.+\.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt))$ { root /usr/share/; } } The error I'm getting is the "502 Bad Gateway". Does someone have any idea of how to fix it? Linux is not my thing... yet!
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Terms of Use