danielacevedonet / googlesitemapgenerator

Automatically exported from code.google.com/p/googlesitemapgenerator
Apache License 2.0
0 stars 0 forks source link

does google sitemap generator support nginx? #96

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
only saw apache version....but I use nginx as web server....

How can I do?

Original issue reported on code.google.com by kama...@gmail.com on 2 Jan 2010 at 4:26

GoogleCodeExporter commented 9 years ago
i have the same question,how can i install on nginx?

Original comment by bossy0...@gmail.com on 18 Apr 2010 at 10:33

GoogleCodeExporter commented 9 years ago
still no nginx version....sad.......

Original comment by kama...@gmail.com on 21 Jun 2010 at 10:11

GoogleCodeExporter commented 9 years ago
If there going to be an nginx version? My DB is growing and manual Sitemap 
creation takes a lot of time.

Original comment by dsouza.k...@gmail.com on 17 Jul 2010 at 12:49

GoogleCodeExporter commented 9 years ago
I'd love to see an nginx friendly version, anyone had any news/luck?

Original comment by ad...@radicalsystems.net on 18 May 2011 at 4:01

GoogleCodeExporter commented 9 years ago
My apache is behind nginx. How can I make GSG work?

Original comment by madd.kor...@gmail.com on 16 Jul 2012 at 12:26

GoogleCodeExporter commented 9 years ago
nginx as a reversed proxy for apache2. 

apache2 is running on port 8080 and nginx on port 80.

nginx config for the folder:

## Apache2 handling whole directory
    location /sitemap-install/ {
    root /path/to/your/sitemap-install/;
    include /etc/nginx/proxy.conf;
    proxy_pass http://you.domain.com:8080;
    proxy_redirect http://your.domain.com http://your.domain.com:8080;
    }

## Apache2 handling whole directory
    location /sitemap-install/admin-console {
    root /path/to/your/sitemap-install/;
    include /etc/nginx/proxy.conf;
    proxy_pass http://you.domain.com:8080;
    proxy_redirect http://your.domain.com http://your.domain.com:8080;
    }

install apache2 mod rpaf "libapache2-mod-rpaf", enable it and configure the 
rpaf.conf file something like this :

<IfModule mod_rpaf.c>
RPAFenable On
RPAFsethostname On
RPAFproxy_ips your server IP
</IfModule>

configure everything for apache as it says in the installation file and you're 
done. nginx will forward the folders as configured.

I'm NOT an nginx guru ! 

Original comment by petardu...@gmail.com on 2 Sep 2012 at 4:57