Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Nginx ("engine x") is a lightweight, high-performance HTTP server, reverse proxy and mail proxy, released under a BSD-like license.

learn more… | top users | synonyms | nginx jobs

0
votes
1answer
32 views

Facebook oauth authentication is redirecting to localhost instead of to my domain

While authenticating via OAuth, Facebook is redirecting to localhost instead of to my domain. I'm using django-allauth for facebook authentication. Someone at GitHub pointed out that the error could ...
1
vote
1answer
97 views

facebook 502 nginx + fpm

I'm unable to post any pictures or other media in facebook. I have used the debuger (http://developers.facebook.com/tools/debug) and I always get: Scrape Information Response Code: 502 I use nginx ...
1
vote
0answers
123 views

New posts have wrong facebook like button code

I have a site where each new pictures uploaded has their own view page with a url like http://mysite/pictures/view/27963. // App is made with Codeigniter over nginx Since about one week ago all new ...
0
votes
2answers
76 views

Nginx rewrite but Facebook doesn't like it

Before using Nginx, with Apache when I was rewriting an url, I could share a page on Facebook and it puts the correct url in the sharer. Now, with Nginx, when I share ...
0
votes
1answer
96 views

Skip nginx basic auth for Facebook

I am working on a project which uses some of the Facebook social plugins, mainly comment box plugin. By dev server is open to public but has auth_basic set up. Is it possible to disable the this for ...
0
votes
1answer
116 views

PHP crashes during oAuth scripts

I just installed Nginx 1.2.4 and PHP 5.4.0 (from svn) (php fpm). CentOs 5.8 64 The problem I have is that PHP crashes the moment I run any social oAuth scripts. I have tried to log into Facebook, ...
0
votes
2answers
122 views

Ngnx 1.2.3 truncated Facebook code parameter value because of “#”

i use Facebook authentication with my website. I use Nginx 1.2.3. Facebook produce URL with the following pattern : ...
0
votes
0answers
249 views

Facebook calling my deauthorize callback url results in a 400 Bad Request

I am trying to implement deauthorize callback for a facebook application implemented in rails. I configured a deauthorize callback url that points to an existing route in my application. However, ...
3
votes
3answers
2k views

nginx big header response

"upstream sent too big header while reading response header from upstream" I keep getting this when I try and do an authentication from facebook. I've increased my buffers: proxy_buffer_size 256k; ...
0
votes
4answers
1k views

iFrame showing up Blank in Facebook Canvas App

I have an extremely simple page that I'm trying to view in the Facebook iframe. It's a Django-view but it's not dependent upon whether the request is submitted via POST or GET. All it does is returns ...
0
votes
1answer
702 views

Nginx: Escaping # in url rewrite

I have a MVC JavaScript application that needs to support Facebook sharing, which means it needs to support unique OG meta HTML tags. I'm doing an Nginx rewrite that will detect the Facebook crawler ...
0
votes
1answer
290 views

How can I hide the requests parameters in the URL string?

I'm using the Facebook php sdk to authenticate users from my website. However after successful authentication, the URL goes to: http://URL/?state={STATE}&code={CODE} How can I remove the state ...
1
vote
1answer
1k views

ember.js node and nginx

I want to serve static webpages for a facebook application via nginx, enable interactivity via ember.js, and update pages with custom data via rest api on node. Is this a logical set up? I am new to ...
4
votes
1answer
507 views

Google Chrome doesn't perform POST in a Facebook Canvas Tab application

I believe this is a difficult question to answer. I've configured my facebook application with the following options: Page Tab URL: https://www.myapp.com.br/ Secure Page Tab URL: ...
1
vote
0answers
193 views

Facebook canvas app hosted on rails nginx

I am making a Facebook canvas app using rails 3.0.9 and ruby 1.9.2. and using nginx as webserver. I am using paper clip to save images on my server file system. The requirement is I want to post ...
1
vote
1answer
813 views

Writing data to $_SERVER on nginx

For reasons that were not my own, I'm working with an application running on nginx that places a GET variable into PHP's $_SERVER global. What happens is: A user logs in with Facebook connect ...
1
vote
2answers
1k views

remove query string key=value at webserver level (apache/nginx)

I would like to remove fb_xd_fragment from the query string and pass the rest of the request off to the application level. This is for an improved cache hit rate so doing this modification at the ...