This is from inside the container..
root@02948b216d7b:/var/www/html/Lychee# cat /etc/php/8.2/fpm/php.ini | grep upload_max
upload_max_filesize = 2M
so the mounted nginx file does not overwrite the php parameter..
In portainer i get this log:
| 68.155.153.238 - - [19/Jan/2026:14:12:15 +0200] "GET /wp-content/plugins/hellopress/wp_filemanager.php HTTP/1.1" 404 146 "-" "-" | |
| 68.155.153.238 - - [19/Jan/2026:14:12:16 +0200] "GET /ver.php HTTP/1.1" 404 146 "-" "-" | |
| 68.155.153.238 - - [19/Jan/2026:14:12:17 +0200] "GET /ultra.php HTTP/1.1" 404 146 "-" "-" | |
| 68.155.153.238 - - [19/Jan/2026:14:12:18 +0200] "GET /pro.php HTTP/1.1" 404 146 "-" "-" | |
| 68.155.153.238 - - [19/Jan/2026:14:12:19 +0200] "GET /wp-good.php HTTP/1.1" 404 146 "-" "-" | |
| 68.155.153.238 - - [19/Jan/2026:14:12:20 +0200] "GET /e.php HTTP/1.1" 404 146 "-" "-" | |
| 68.155.153.238 - - [19/Jan/2026:14:12:21 +0200] "GET /data.php HTTP/1.1" 404 146 "-" "-" | |
| 68.155.153.238 - - [19/Jan/2026:14:12:22 +0200] "GET /abcd.php HTTP/1.1" 404 146 "-" "-" | |
| 68.155.153.238 - - [19/Jan/2026:14:12:23 +0200] "GET /z.php HTTP/1.1" 404 146 "-" "-" | |
| 68.155.153.238 - - [19/Jan/2026:14:12:24 +0200] "GET /css.php HTTP/1.1" 404 146 "-" "-" |
| 35.203.210.0 | |
| 35.203.210.1 | |
| 35.203.210.2 | |
| 35.203.210.3 | |
| 35.203.210.4 | |
| 35.203.210.5 | |
| 35.203.210.6 | |
| 35.203.210.7 | |
| 35.203.210.8 | |
| 35.203.210.9 |
| 66.132.159.0/24 | |
| 162.142.125.0/24 | |
| 167.94.138.0/24 | |
| 167.94.145.0/24 | |
| 167.94.146.0/24 | |
| 167.248.133.0/24 | |
| 199.45.154.0/24 | |
| 199.45.155.0/24 | |
| 206.168.34.0/24 | |
| 206.168.35.0/24 |
| server { | |
| server_name <name>.cumvreau.eu; | |
| location / { | |
| proxy_pass <adress>; | |
| proxy_set_header Host $host; | |
| proxy_set_header X-Real-IP $remote_addr; | |
| proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
| proxy_hide_header X-Frame-Options; |
| version: '3' | |
| services: | |
| snippet-box: | |
| image: pawelmalak/snippet-box:arm | |
| container_name: snippet-box | |
| volumes: | |
| - ./data:/app/data | |
| ports: | |
| - 5000:5000 | |
| restart: unless-stopped |
This is from inside the container..
root@02948b216d7b:/var/www/html/Lychee# cat /etc/php/8.2/fpm/php.ini | grep upload_max
upload_max_filesize = 2M
so the mounted nginx file does not overwrite the php parameter..
In portainer i get this log:
People
:bowtie: |
π :smile: |
π :laughing: |
|---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |
| # This is an example resource file for rTorrent. Copy to | |
| # ~/.rtorrent.rc and enable/modify the options as needed. Remember to | |
| # uncomment the options you wish to enable. | |
| # Maximum and minimum number of peers to connect to per torrent. | |
| min_peers = 1 | |
| max_peers = 300 | |
| # Same as above but for seeding completed torrents (-1 = same as downloading) | |
| min_peers_seed = 1 |
| #----{ Aliases for Ubuntu: }-------------------------------------------------- | |
| # Admin | |
| alias update="sudo apt update ; sudo apt -ZWry safe-upgrade && sudo apt -ZWry --purge-unused clean" | |
| alias sources="sudo nano /etc/apt/sources.list" | |
| alias install="sudo apt -ZWry install" | |
| alias uninstall="sudo apt -ZWry remove" | |
| alias pkgsearch="apt search" | |
| alias installed="dpkg --get-selections | grep" | |
| alias add-repo="sudo add-apt-repository" | |
| alias app="apropos" |
| directory = /mnt/wd/movies | |
| session = /home/rock64/.rtorrent/.session | |
| # Close torrents when diskspace is low. | |
| schedule = low_diskspace,5,60,close_low_diskspace=20240M | |
| port_range = 51413-51413 | |
| port_random = no | |
| encryption = allow_incoming,enable_retry,prefer_plaintext | |
| peer_exchange = no | |
| dht = disable | |
| scgi_port = 127.0.0.1:5000 |