]> git.openstreetmap.org Git - nominatim.git/commitdiff
move nominatim.org links to https
authorSarah Hoffmann <lonvia@denofr.de>
Wed, 10 Jan 2018 22:21:21 +0000 (23:21 +0100)
committerSarah Hoffmann <lonvia@denofr.de>
Wed, 10 Jan 2018 22:21:21 +0000 (23:21 +0100)
Solves #737.

docs/Faq.md
docs/Import-and-Update.md
docs/Install-on-Centos-7.md
docs/Install-on-Ubuntu-16.md
test/README.md
utils/setup.php
vagrant/Install-on-Centos-7.sh
vagrant/Install-on-Ubuntu-16.sh
vagrant/install-on-travis-ci.sh

index ace6537b87545e50d1f0b3763835d20f94118333..ed26f7b877e6150677d2a8aa9d047b4f824cf28c 100644 (file)
@@ -40,7 +40,7 @@ then you can resume with the following command:
 
    ./utils/setup.php --index --create-search-indices --create-country-names
 
-If the reported rank is 26 or higher, you can also safely add `-index-noanalyse`.
+If the reported rank is 26 or higher, you can also safely add `--index-noanalyse`.
 
 
 ### When running the setup.php script I get a warning:
index ec451e8f813afe2f4f15d9c821adb02156cf0605..d99c878c3d482904c38b292e2d910885be846461 100644 (file)
@@ -33,8 +33,8 @@ but it will improve the quality of the results if this is installed.
 This data is available as a binary download:
 
     cd $NOMINATIM_SOURCE_DIR/data
-    wget http://www.nominatim.org/data/wikipedia_article.sql.bin
-    wget http://www.nominatim.org/data/wikipedia_redirect.sql.bin
+    wget https://www.nominatim.org/data/wikipedia_article.sql.bin
+    wget https://www.nominatim.org/data/wikipedia_redirect.sql.bin
 
 Combined the 2 files are around 1.5GB and add around 30GB to the install
 size of nominatim. They also increase the install time by an hour or so.
@@ -48,7 +48,7 @@ loaded data.
 Nominatim can use postcodes from an external source to improve searches that involve a UK postcode. This data can be optionally downloaded: 
 
     cd $NOMINATIM_SOURCE_DIR/data
-    wget http://www.nominatim.org/data/gb_postcode_data.sql.gz
+    wget https://www.nominatim.org/data/gb_postcode_data.sql.gz
 
 
 Initial import of the data
index 5156fa02fd6fffdd4f1e8307298a59f6486c4bd9..0ac1e53bcc04b0cc87857a02c3778c701d46c797 100644 (file)
@@ -154,7 +154,7 @@ When installing the latest source from github, you also need to
 download the country grid:
 
 
-    wget -O data/country_osm_grid.sql.gz http://www.nominatim.org/data/country_grid.sql.gz
+    wget -O data/country_osm_grid.sql.gz https://www.nominatim.org/data/country_grid.sql.gz
 
 
 The code must be built in a separate directory. Create this directory,
index 849e00b9a349fe8249de87bb757958d5f80f42f6..de84f5564f33abee885a95c4b529fbbbe49c8c73 100644 (file)
@@ -142,7 +142,7 @@ When installing the latest source from github, you also need to
 download the country grid:
 
 
-    wget -O data/country_osm_grid.sql.gz http://www.nominatim.org/data/country_grid.sql.gz
+    wget -O data/country_osm_grid.sql.gz https://www.nominatim.org/data/country_grid.sql.gz
 
 
 The code must be built in a separate directory. Create this directory,
index 8778265315b9e5a17fdc6fe1710f0587883627ad..2a357e40e8e1acebdaba6e7c359f6f21866f067d 100644 (file)
@@ -100,7 +100,7 @@ be documented.
 These tests are meant to test the different API endpoints and their parameters.
 They require a preimported test database, which consists of the import of a
 planet extract. A precompiled PBF with the necessary data can be downloaded from
-http://www.nominatim.org/data/test/nominatim-api-testdata.pbf
+https://www.nominatim.org/data/test/nominatim-api-testdata.pbf
 
 The polygons defining the extract can be found in the test/testdb
 directory. There is also a reduced set of wikipedia data for this extract,
@@ -112,7 +112,7 @@ planets are likely to work as well but you may see isolated test
 failures where the data has changed. To recreate the input data
 for the test database run:
 
-    wget http://free.nchc.org.tw/osm.planet/pbf/planet-160725.osm.pbf
+    wget https://free.nchc.org.tw/osm.planet/pbf/planet-160725.osm.pbf
     osmconvert planet-160725.osm.pbf -B=test/testdb/testdb.polys -o=testdb.pbf
 
 Before importing make sure to add the following to your local settings:
index b93e4f827988c37060570f47e57c310c3575f483..53778b1c7fe48614559eadef02737bf46dbf05cb 100755 (executable)
@@ -152,7 +152,7 @@ if ($aCMDResult['setup-db'] || $aCMDResult['all']) {
 
     if (!file_exists(CONST_ExtraDataPath.'/country_osm_grid.sql.gz')) {
         echo 'Error: you need to download the country_osm_grid first:';
-        echo "\n    wget -O ".CONST_ExtraDataPath."/country_osm_grid.sql.gz http://www.nominatim.org/data/country_grid.sql.gz\n";
+        echo "\n    wget -O ".CONST_ExtraDataPath."/country_osm_grid.sql.gz https://www.nominatim.org/data/country_grid.sql.gz\n";
         exit(1);
     }
 
index 36d3ea4a45fe0959ee68b879a91db1baf68185c0..6c41b70c83bd307ff232872863821f3af3c109c8 100755 (executable)
@@ -155,7 +155,7 @@ fi                                 #DOCS:
 # download the country grid:
 
 if [ ! -f data/country_osm_grid.sql.gz ]; then       #DOCS:
-    wget -O data/country_osm_grid.sql.gz http://www.nominatim.org/data/country_grid.sql.gz
+    wget -O data/country_osm_grid.sql.gz https://www.nominatim.org/data/country_grid.sql.gz
 fi                                 #DOCS:
 
 # The code must be built in a separate directory. Create this directory,
index 9c58d06324c4850e127f5485089bebfac8896f3c..aee7a3bf5ed397b5e265877b76d9da49321dd1bc 100755 (executable)
@@ -143,7 +143,7 @@ fi                                 #DOCS:
 # download the country grid:
 
 if [ ! -f data/country_osm_grid.sql.gz ]; then       #DOCS:
-    wget -O data/country_osm_grid.sql.gz http://www.nominatim.org/data/country_grid.sql.gz
+    wget -O data/country_osm_grid.sql.gz https://www.nominatim.org/data/country_grid.sql.gz
 fi                                 #DOCS:
 
 # The code must be built in a separate directory. Create this directory,
index 983571856e07c8469034a246dc15167cb260f7b5..f156ea45b3877a652156e9861342aa46a6ec34a3 100755 (executable)
@@ -45,7 +45,7 @@ EOFAPACHECONF
 sudo a2enconf nominatim
 sudo service apache2 restart
 
-wget -O $TRAVIS_BUILD_DIR/data/country_osm_grid.sql.gz http://www.nominatim.org/data/country_grid.sql.gz
+wget -O $TRAVIS_BUILD_DIR/data/country_osm_grid.sql.gz https://www.nominatim.org/data/country_grid.sql.gz
 
 mkdir build
 cd build