Open GoogleCodeExporter opened 8 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
still no nginx version....sad.......
Original comment by kama...@gmail.com
on 21 Jun 2010 at 10:11
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
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
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
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
Original issue reported on code.google.com by
kama...@gmail.com
on 2 Jan 2010 at 4:26