Re: [Geoserver-users] HTTPS to GeoServer Docker

2023-09-19 Thread Georg Weickelt
another option is https://github.com/nginx-proxy/nginx-proxy in 
connection with https://github.com/nginx-proxy/acme-companion. This is 
also a proxy that is easy to install and supports free certificates via 
LetsEncrypt. The Docker containers are well documented.


Am 20.09.2023 um 02:00 schrieb brian--- via Geoserver-users:
I set up a reverse proxy (currently I use Varnish/Hitch) and it 
supports the certificates and all that, and then I don't have to worry 
about it in the services such as GeoServer. There's the additional
benefit that Varnish is a cache, too. (Really it's designed to be a 
cache,

and the reverse proxy is an add on)

It keeps the functions of managing certificates and encryption 
separated from the sundry various HTTP services I use. Using the proxy 
means you can do things like write little Python Flask or Node 
services and still have them behind HTTPS. It means you can use pretty 
much any Docker HTTP service and run it behind HTTPS without having to 
change the Docker image. Varnish is sort of what the ArcGIS "Web 
Adaptor" does but in an open source well-documented and effective and 
flexible way.


My repository for Varnish and Hitch is here 
https://github.com/Wildsong/docker-varnish
I think the notes are reasonably good but I wrote them for myself. If 
you want support with it, write to me.


Brian Wilson
Astoria Oregon


___
Geoserver-users mailing list

Please make sure you read the following two resources before posting 
to this list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html


If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer 




Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] HTTPS to GeoServer Docker

2023-09-19 Thread brian--- via Geoserver-users
I set up a reverse proxy (currently I use Varnish/Hitch) and it 
supports the certificates and all that, and then I don't have to worry 
about it in the services such as GeoServer. There's the additional

benefit that Varnish is a cache, too. (Really it's designed to be a cache,
and the reverse proxy is an add on)

It keeps the functions of managing certificates and encryption separated 
from the sundry various HTTP services I use. Using the proxy means you 
can do things like write little Python Flask or Node services and still 
have them behind HTTPS. It means you can use pretty much any Docker 
HTTP service and run it behind HTTPS without having to change the Docker 
image. Varnish is sort of what the ArcGIS "Web Adaptor" does but in an 
open source well-documented and effective and flexible way.


My repository for Varnish and Hitch is here 
https://github.com/Wildsong/docker-varnish
I think the notes are reasonably good but I wrote them for myself. If you 
want support with it, write to me.


Brian Wilson
Astoria Oregon


___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] HTTPS to GeoServer Docker

2023-09-19 Thread Jody Garnett
It is a good feature request; I wonder how it can be accommodated.

On Tue, Sep 19, 2023 at 11:58 AM Adam Cooper 
wrote:

> I am exploring options for a relatively low-usage service requiring low
> levels of infrastructure setup and maintenance (the data is related to a
> local history society).
>
> GeoServer docker image appears to be perfect except that I observe it
> serves unencrypted data. This is not acceptable in 2023 on the grounds
> of security and privacy. I have not been able to find how to start the
> container such that HTTPS is the exclusive means of access.
>
> Is this possible? (I think it really should be!)
>
> Thanks in advance, Adam
>
>
>
>
> ___
> Geoserver-users mailing list
>
> Please make sure you read the following two resources before posting to
> this list:
> - Earning your support instead of buying it, but Ian Turton:
> http://www.ianturton.com/talks/foss4g.html#/
> - The GeoServer user list posting guidelines:
> http://geoserver.org/comm/userlist-guidelines.html
>
> If you want to request a feature or an improvement, also see this:
> https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer
>
>
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>
___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


[Geoserver-users] HTTPS to GeoServer Docker

2023-09-19 Thread Adam Cooper
I am exploring options for a relatively low-usage service requiring low 
levels of infrastructure setup and maintenance (the data is related to a 
local history society).


GeoServer docker image appears to be perfect except that I observe it 
serves unencrypted data. This is not acceptable in 2023 on the grounds 
of security and privacy. I have not been able to find how to start the 
container such that HTTPS is the exclusive means of access.


Is this possible? (I think it really should be!)

Thanks in advance, Adam




___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Unable to preview grouped layers

2023-09-19 Thread Eliud Kinyanjui
Yes, have installed the correct module version, same as the Geoserver -
Version 2.23.0

The Geofence instance is a standalone server.

On Tue, Sep 19, 2023 at 3:21 PM Ian Turton  wrote:

> did you install the correct version of GeoFence?
> How did you configure security for that group?
>
> Ian
>
> On Tue, 19 Sept 2023 at 12:35, Eliud Kinyanjui <
> eliud.kinyan...@ramani.co.ke> wrote:
>
>> Hello,
>>
>> Getting the following error while trying to preview a grouped layer.
>>
>> GeoServer Version
>> 2.23.0
>>
>> This XML file does not appear to have any style information associated
>> with it. The document tree is shown below.
>> http://www.w3.org/2001/XMLSchema";
>> xmlns:ows="http://www.opengis.net/ows"; xmlns:xsi="
>> http://www.w3.org/2001/XMLSchema-instance"; version="1.0.0"
>> xsi:schemaLocation="http://www.opengis.net/ows
>> schemas/ows/1.0.0/owsExceptionReport.xsd">
>> 
>> com.google.common.util.concurrent.UncheckedExecutionException:
>> org.geoserver.geofence.services.exception.BadRequestServiceEx: You can
>> filter either by user or role
>> org.geoserver.geofence.services.exception.BadRequestServiceEx: You can
>> filter either by user or role You can filter either by user or
>> role
>> 
>> 
>> ___
>> Geoserver-users mailing list
>>
>> Please make sure you read the following two resources before posting to
>> this list:
>> - Earning your support instead of buying it, but Ian Turton:
>> http://www.ianturton.com/talks/foss4g.html#/
>> - The GeoServer user list posting guidelines:
>> http://geoserver.org/comm/userlist-guidelines.html
>>
>> If you want to request a feature or an improvement, also see this:
>> https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer
>>
>>
>> Geoserver-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>>
>
>
> --
> Ian Turton
>


-- 

Eliud Ngugi

Head of Technology


[image: image]

[image: Ramani Logo]

Mobile: +254 725 580 770

Office:  +254 722 200 616

Address: Wilken House, Wilson Airport, Langata Road, Nairobi.

[image: image]

[image: facebook]


[image: twitter]


[image: linkedin]


[image: instagram]


[image: Youtube]


[image: website]

Save Contact

___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


Re: [Geoserver-users] Unable to preview grouped layers

2023-09-19 Thread Ian Turton
did you install the correct version of GeoFence?
How did you configure security for that group?

Ian

On Tue, 19 Sept 2023 at 12:35, Eliud Kinyanjui 
wrote:

> Hello,
>
> Getting the following error while trying to preview a grouped layer.
>
> GeoServer Version
> 2.23.0
>
> This XML file does not appear to have any style information associated
> with it. The document tree is shown below.
> http://www.w3.org/2001/XMLSchema";
> xmlns:ows="http://www.opengis.net/ows"; xmlns:xsi="
> http://www.w3.org/2001/XMLSchema-instance"; version="1.0.0"
> xsi:schemaLocation="http://www.opengis.net/ows
> schemas/ows/1.0.0/owsExceptionReport.xsd">
> 
> com.google.common.util.concurrent.UncheckedExecutionException:
> org.geoserver.geofence.services.exception.BadRequestServiceEx: You can
> filter either by user or role
> org.geoserver.geofence.services.exception.BadRequestServiceEx: You can
> filter either by user or role You can filter either by user or
> role
> 
> 
> ___
> Geoserver-users mailing list
>
> Please make sure you read the following two resources before posting to
> this list:
> - Earning your support instead of buying it, but Ian Turton:
> http://www.ianturton.com/talks/foss4g.html#/
> - The GeoServer user list posting guidelines:
> http://geoserver.org/comm/userlist-guidelines.html
>
> If you want to request a feature or an improvement, also see this:
> https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer
>
>
> Geoserver-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geoserver-users
>


-- 
Ian Turton
___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


[Geoserver-users] Unable to preview grouped layers

2023-09-19 Thread Eliud Kinyanjui
Hello,

Getting the following error while trying to preview a grouped layer.

GeoServer Version
2.23.0

This XML file does not appear to have any style information associated with
it. The document tree is shown below.
http://www.w3.org/2001/XMLSchema"; xmlns:ows="
http://www.opengis.net/ows"; xmlns:xsi="
http://www.w3.org/2001/XMLSchema-instance"; version="1.0.0"
xsi:schemaLocation="http://www.opengis.net/ows
schemas/ows/1.0.0/owsExceptionReport.xsd">

com.google.common.util.concurrent.UncheckedExecutionException:
org.geoserver.geofence.services.exception.BadRequestServiceEx: You can
filter either by user or role
org.geoserver.geofence.services.exception.BadRequestServiceEx: You can
filter either by user or role You can filter either by user or
role


___
Geoserver-users mailing list

Please make sure you read the following two resources before posting to this 
list:
- Earning your support instead of buying it, but Ian Turton: 
http://www.ianturton.com/talks/foss4g.html#/
- The GeoServer user list posting guidelines: 
http://geoserver.org/comm/userlist-guidelines.html

If you want to request a feature or an improvement, also see this: 
https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer


Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users