Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
Posted June 14, 20168 yr 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!
September 22, 20168 yr Author 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.
October 6, 20168 yr Author I found a solution, here: https://github.com/Lavoaster/IP.Board-Steam-Authentication-Method/issues/58#issuecomment-251316163 New rewrite rules for Nginx: try_files $uri $uri/ /index.php?$args;
January 7, 20178 yr # 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?
Archived
This topic is now archived and is closed to further replies.