Skip to content

Commit

Permalink
- replace build server url
Browse files Browse the repository at this point in the history
  • Loading branch information
afabiani committed Oct 8, 2018
1 parent 33aa3e6 commit 049b895
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions dev_config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
GEOSERVER_URL: "http://build.geonode.org/geoserver/latest/geoserver-2.14.x.war"
DATA_DIR_URL: "http://build.geonode.org/geoserver/latest/data-2.14.x.zip"
GEOSERVER_URL: "https://build.geo-solutions.it/geonode/geoserver/latest/geoserver-2.14.x.war"
DATA_DIR_URL: "https://build.geo-solutions.it/geonode/geoserver/latest/data-2.14.x.zip"
JETTY_RUNNER_URL: "http://repo2.maven.org/maven2/org/eclipse/jetty/jetty-runner/9.4.7.v20170914/jetty-runner-9.4.7.v20170914.jar"
WINDOWS:
py2exe: "http://downloads.sourceforge.net/project/py2exe/py2exe/0.6.9/py2exe-0.6.9.win32-py2.7.exe"
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/admin/backup_restore/index.txt
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ The usage of those commands is quite easy and straight. It is possible to run th

The first step is to ensure that everything is correctly configured and the requisites respected in order to successfully perform a backup and restore of GeoNode.

.. warning:: It is worth notice that this functionality requires the latest `GeoServer Extension <http://build.geonode.org/geoserver/latest/>`_ (2.9.x or greater) for GeoNode in order to correctly work.
.. warning:: It is worth notice that this functionality requires the latest `GeoServer Extension <https://build.geo-solutions.it/geonode/geoserver/latest//>`_ (2.9.x or greater) for GeoNode in order to correctly work.

.. note:: GeoServer full documentation is also available here `GeoServer Docs <http://docs.geoserver.org/latest/en/user/community/backuprestore/index.html>`_

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ Upgrade Development Environment

DJANGO_SETTINGS_MODULE=geonode.local_settings paver sync

* Download the latest GeoServer WAR (http://build.geonode.org/geoserver/latest/geoserver-2.12.2.war)
* Download the latest GeoServer WAR (https://build.geo-solutions.it/geonode/geoserver/latest//geoserver-2.12.2.war)

.. image:: img/gn_up_0004.png
:width: 600px
Expand All @@ -562,7 +562,7 @@ Upgrade Development Environment

* Delete the printing configuration by deleting the content of the ``GEOSERVER_DATA_DIR/printing`` folder

* Insert the content of the 2.12.2 data dir (http://build.geonode.org/geoserver/latest/data-2.12.2.zip),
* Insert the content of the 2.12.2 data dir (https://build.geo-solutions.it/geonode/geoserver/latest//data-2.12.2.zip),
specifically:

- The content of ``data/notifier``, into the ``GEOSERVER_DATA_DIR/notifier folder``.
Expand Down Expand Up @@ -827,7 +827,7 @@ Upgrade Development Environment
23 /**;POST,DELETE,PUT=ROLE_AUTHENTICATED <> 4 /**;POST,DELETE,PUT=ROLE_ADMINISTRATOR
------------------------------------------------------------------------

.. note:: In case of dubts you can always try to do a "diff" between your old GEOSERVER_DATA_DIR and http://build.geonode.org/geoserver/latest/data-2.12.2.zip
.. note:: In case of dubts you can always try to do a "diff" between your old GEOSERVER_DATA_DIR and https://build.geo-solutions.it/geonode/geoserver/latest//data-2.12.2.zip

* Update/tweak GeoNode ``settings.py``

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ variables::
Now download and copy GeoServer web archive inside the webapps folder. Tomcat will extract the
war file and run GeoServer::

curl -LO http://build.geonode.org/geoserver/latest/geoserver-2.9.x-oauth2.war && mv geoserver-2.9.x-oauth2.war geoserver.war
curl -LO https://build.geo-solutions.it/geonode/geoserver/latest//geoserver-2.9.x-oauth2.war && mv geoserver-2.9.x-oauth2.war geoserver.war
sudo mkdir -p /var/lib/tomcats/geoserver/webapps/
sudo cp geoserver.war /var/lib/tomcats/geoserver/webapps/

Expand Down
2 changes: 1 addition & 1 deletion pavement.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def grab(src, dest, name):
import requests
import math
# Streaming, so we can iterate over the response.
r = requests.get(str(src), stream=True, timeout=10)
r = requests.get(str(src), stream=True, timeout=10, verify=False)
# Total size in bytes.
total_size = int(r.headers.get('content-length', 0))
print("Requesting %s" % str(src))
Expand Down

0 comments on commit 049b895

Please sign in to comment.