Jump to content

Need Help with - Sign in throught Steam (Nginx rules)


Natea

Recommended Posts

Hi ^_^

I have Sign in throught Steam Plugin, and I need help to make it works in my new host.

I see this comment here from @Nicolas Regain:

https://invisionpower.com/files/file/7555-sign-in-through-steam-ipb4/?tab=reviews#review-9162

Anyone knows and can tell me what Nginx rewrite rules I need?

My SysAdmin ( @ASTRAPI) migrate my forum, 1 month ago, from Litespeed SharedHost to VPS with Nginx. In my old host (litespeed) Steam plugin works well but now in the new VPS doesn't work. Maybe my Sysadmin need setup the Nginx rules?

I can't link IPS account to Steam account I see the same error, like @123232323 :

https://invisionpower.com/files/file/7555-sign-in-through-steam-ipb4/?do=findReview&review=9190

Something went wrong. Please try again.

I have IPS 4.1.12.2, latest stable MariaDB, PHP 5.6, Nginx and memcached.

Thanks in advance!

Link to comment
Share on other sites

  • 3 months later...

I have not been able to solve this yet.

Can anybody help me?

Now I have IPS 4.1.15, and I can't connect with Steam plugin with my Forum account.

Every time I try to connect accounts, appears to me the error message back from Steam to my Forum.

Something went wrong. Please try again.

Link to comment
Share on other sites

  • 2 weeks later...
  • 3 months later...
# Default server configuration
#
server {
	listen 80 default_server;
	listen [::]:80 default_server;
	server_name panamy.city www.panamy.city;
	return 301 https://$server_name$request_uri;
	location / {
		try_files $uri $uri/ /index.php?$args;
	}
}

server {

	# SSL configuration
	
	listen 443 ssl http2 default_server;
	listen [::]:443 ssl http2 default_server;
	include snippets/ssl-panamy.city.conf;
	include snippets/ssl-params.conf;

	root /srv/www/panamy.city/ips;

	# Add index.php to the list if you are using PHP
	index index.php index.html index.htm index.nginx-debian.html;


	location ~ /.well-known {
		allow all;
	}

	location / {
		try_files $uri $uri/ =404;
	}

	# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
	#
	location ~ \.php$ {
		include snippets/fastcgi-php.conf;
		fastcgi_pass unix:/run/php/php7.0-fpm.sock;
	}

	
	location ~ /\.ht {
		deny all;
	}

	client_max_body_size 100M;

}

nothing, some setting I need to set up first?

rewrite1.PNG

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...