Difference between revisions of "Database/Map/Server"

From Open Maps wiki
Jump to: navigation, search
(RPi side)
(Blanked the page)
 
(23 intermediate revisions by 5 users not shown)
Line 1: Line 1:
  
== Client Side ==
 
 
extract the location client-side with [https://github.com/jseidelin/exif-js EXIF-JS]
 
 
== RPi side ==
 
 
 
Lets set up our map server with local cached image files
 
 
# [http://elinux.org/RPi_Nginx_Webserver install Nginx]
 
<nowiki>
 
sudo apt-get update
 
sudo apt-get install nginx
 
sudo service nginx start
 
</nowiki>
 
# Make a link to /var/www to make things easier
 
<nowiki>
 
sudo ln -s /var/www /home/USER/code
 
</nowiki>
 
 
(# [http://wiki.nginx.org/PHPFcgiExample now set up PHP with fastCGI])
 
(# [http://gis.stackexchange.com/a/102775 set up mapserv])
 
(# [https://www.digitalocean.com/community/tutorials/how-to-setup-fastcgi-caching-with-nginx-on-your-vps add mapserv to cache])
 
 
 
# [http://elinux.org/RPI-Wireless-Hotspot set up AP with udhcpd]
 
 
# [http://www.daveconroy.com/turn-your-raspberry-pi-into-a-wifi-hotspot-with-edimax-nano-usb-ew-7811un-rtl8188cus-chipset/ edimax version of hostapd]
 
(# [http://www.pihomeserver.fr/en/2014/05/22/raspberry-pi-home-server-creer-hot-spot-wifi-captive-portal/ captive portal setup!!])
 
(# '''[http://www.revsys.com/writings/quicktips/nat.html but with iptables command from here, since the others are broken]''')
 
 
# Set up interface for serving DHCP and DNS
 
<nowiki>
 
auto eth0
 
iface eth0 inet static
 
address 10.1.2.1
 
netmask 255.255.255.0
 
</nowiki>
 
# Install dnsmasq "sudo apt-get install dnsmasq" and configure
 
<nowiki>
 
# captive portal to this
 
address=/#/10.1.2.1
 
interface=eth0
 
dhcp-range=10.1.2.10,10.1.2.2,12h
 
</nowiki>
 
# restart dnsmasq
 
<nowiki>
 
sudo /etc/init.d/dnsmasq restart
 
</nowiki>
 
 
# dnsmarsq script logging...
 
[[File:logging_dhcp.png|thumbnail]]
 
 
ended up using dnsmasq for DNS and DHCP.  Setting DNS forward IP to local for captive portal setup
 
 
 
[http://www.raspberrypi.org/forums/viewtopic.php?f=36&t=39225 some popup mehods]
 
 
/var/www
 
 
[[File:Var.zip|thumbnail|/var/www/contents]]
 
 
== For Online ==
 
 
[http://maps.stamen.com/m2i/image/20130610/mapstack_ZHVazuJTG7s beautiful Stamen Design map that can be used]
 
[[File:Map example1.png|thumbnail]]
 
[[File:Map example2.png|thumbnail]]
 

Latest revision as of 15:14, 18 April 2016