First time here? Check out the FAQ!

gplaxico's profile - activity

2018-05-21 19:32:07 -0500 received badge Notable Question (source)
2017-01-25 11:15:04 -0500 received badge Popular Question (source)
2014-07-22 04:57:06 -0500 received badge Famous Question (source)
2013-07-11 08:06:38 -0500 received badge Notable Question (source)
2012-12-14 00:47:04 -0500 received badge Popular Question (source)
2012-12-14 00:47:04 -0500 received badge Famous Question (source)
2012-08-19 12:41:42 -0500 received badge Good Question (source)
2012-07-24 17:20:25 -0500 received badge Nice Question (source)
2012-07-24 16:24:22 -0500 received badge Editor (source)
2012-07-24 16:20:47 -0500 asked a question External http references in css and js files when serving askbot via ssl

Where can I find the references below in the style/js files?
When I run my askbot application under secure ssl/https I get an error because it draws these fonts from an http source. I'd like to change them to a https request if possible.

http://themes.googleusercontent.com/static/fonts/yanonekaffeesatz/v4/We_iSDqttE3etzfdfhuPRbJjSLMfVFmTspsxH0yGxjj3rGVtsTkPsbDajuO5ueQw.woff

http://themes.googleusercontent.com/static/fonts/yanonekaffeesatz/v4/We_iSDqttE3etzfdfhuPRbHVephy08vG3A_n649omsL3rGVtsTkPsbDajuO5ueQw.woff

http://themes.googleusercontent.com/static/fonts/yanonekaffeesatz/v4/YDAoLskQQ5MOAgvHUQCcLQa6gm6bS00u2Qn-iPLo1Go.woff

2012-07-22 13:49:00 -0500 received badge Student (source)
2012-07-22 13:02:31 -0500 asked a question serve askbot on nginx with uwsgi or gunicorn from subpath

Has anyone successfully served askbot from a subpath using nginx with uwsgi or gunicorn.

Main site: www.example.com Will have link to askbot forum: www.example.com/ask

On nginx trying to capture this seperately by doing

location /ask/ {
    proxy_set_header    X-Real-IP   $remote_addr;
    proxy_set_header    Host        $http_host;
    proxy_set_header    X-Forwarded-For $proxy_add_x_forwarded_for;

    rewrite ^/ask/(.*)$ /$1 break;
    proxy_pass http://askbot;  #askbot is an upstream hook either gunicorn or uwsgi
    proxy_redirect http://askbot/ $scheme://$host/ask/;

No success. Tried other approaches, uwsgi SCRIPT_NAME cofiguration, etc... The closet one found was using nginx as a proxy and serving askbot from apache. Obviously, I'd like to have just nginx running and not have both apache and nginx running.

Why run from a subpath. Simple the main site will have links to other facets of the website. I don't it to be incorporated into the main site which are either django projects or other framework. Bottom line: it would be nice to be able to deploy separate from non-root location.