Sunday, October 01, 2023
support@conference.yunohost.org
October
Mon Tue Wed Thu Fri Sat Sun
            1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
         

[07:12:03] <craigvb> My_Webapp ... changing memory footprint or expected usage displays a nothing changed message when it's saving and reverts back to default settings....any ideas?
[08:46:43] <Tag> > <@craigvb:matrix.org> My_Webapp ... changing memory footprint or expected usage displays a nothing changed message when it's saving and reverts back to default settings....any ideas?

Can you share the logs with YunoPaste? You can find them in the webadmin in Tools > Logs.
[09:41:19] <cgman7> I have a 2Fauth installed on my Yunohost server. I want to block all the external IPs from this web app and only allow my IP how can I do this?
[09:50:39] <anubis> maybe with Fail2ban?
[09:54:16] <cgman7> Fail2Ban is a security tool that monitors server log files for suspicious activities, particularly repeated failed login attempts anubis
[09:58:46] <craigvb> > <@tag:lostpod.me> Can you share the logs with YunoPaste? You can find them in the webadmin in Tools > Logs.

No I can't... for some reason the password gets put in there 🙄 Just uploading stuff. will try again tomorrow and see what happens...why oh why is the password passed into the log files
[09:59:10] <Tag> cgman7: you can add a nginx config file like `/etc/nginx/conf.d/yourdomain.d/deny.conf` with this :
```
allow 192.168.0.0/24;
```
[09:59:16] <Tag> cgman7: you can add a nginx config file like `/etc/nginx/conf.d/yourdomain.d/deny.conf` with this :

```
allow 192.168.0.0/24;
deny all;
```
[09:59:23] <Tag> cgman7: you can add a nginx config file like `/etc/nginx/conf.d/yourdomain.d/deny.conf` with something like this :

```
allow 192.168.0.0/24;
deny all;
```
[11:01:06] <jorgeluis> Hi, I need help to mask an URL. We have a Pico CMS website on Nextcloud (long URL) and would like to mask it with another domain name. Currently, we are using the Redirect app to redirect to this Pico CMS page but the long URL is being shown. How can we mask it so that users see a short URL? Should we use a CNAME record?
[11:59:35] <hueso> you'd need to put a reverse proxy there
[12:02:32] <jorgeluis> > you'd need to put a reverse proxy there
do you know how? is there an ynh app for that?
[12:23:07] <jorgeluis> > you'd need to put a reverse proxy there
I am getting an error message when trying to set the reverse proxy:
`Reverse proxy URL cannot contain additional slashes or components: https://nube.maindomain.tld/index.php/apps/cms_pico/pico/site/`
[13:44:48] <ChriChri[m]> > <jorgeluis> > you'd need to put a reverse proxy there
> do you know how? is there an ynh app for that?

```
server {
listen 80 default_server;
# listen [::]:80 default_server;

server_name *.xyz-point-do.main xyz-point-do.main *.xyzpoint.do.main xyzpoint.do.main *.xyz-point.do.main xyz-point.do.main;

location / {
return 301 https://www.xyz-point.do.main$request_uri;
}

location /.well-known/acme-challenge/ {
root /var/www/html/;
}

}

server {
listen 443 ssl default_server;
# listen [::]:443 ssl default_server;

ssl_certificate /etc/ssl/www.xyz-point.do.main.fullchain.cer;
ssl_certificate_key /etc/ssl/private/www.xyz-point.do.main.key;

server_name www.xyz-point.do.main;

location / {
proxy_pass http://192.168.1.1/;
}

}
```
This is my working config...
[13:55:13] <Michele Agostinelli> Anyone kwnows if i can enable hooks on password change on user action? I activated the post_user_update, but It works only in admin operation. It doesn't work in case of self password change.
[13:58:12] <Tag> I think you could patch SSOwat to trigger the hook somehow
[14:26:23] <Michele Agostinelli> > <@tag:lostpod.me> I think you could patch SSOwat to trigger the hook somehow

Is possible to customize SSOwat?
[14:30:26] <Tag> > <@magostinelli:matrix.org> Is possible to customize SSOwat?

Lets continue on the forum
[14:37:26] <Michele Agostinelli> > <@tag:lostpod.me> Lets continue on the forum

Ok, i have already posted on it
[14:58:57] <kr1s> hello
[15:01:41] <@err404:matrix.org> Hello kr1s
[15:02:58] <tituspijean> And make sure that the wg-quick@wg0 service is running ;]
[15:23:26] <kr1s> I tryed to install hubzilla but it seems that the link between the app and the domain is wrong. when I correct it
[15:23:27] <kr1s> it says it is already used
[15:23:28] <kr1s> I restart all : delete app delete domaine create domain and reinstall the app
[15:24:08] <kr1s> but still the same
[15:29:46] <kr1s> what did I do wrong
[17:22:08] <tituspijean> kr1s: hello kris, to help us help you, we need the actual error. Do not rephrase it. Does YunoHost say an app is already installed on the domain ?

If YunoHost shows a "Share logs with YunoPaste" button, click it, and share here the URL of the generated log page.