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:
| 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 |
| ### System | |
| alias update="sudo apt-get update && sudo apt-get upgrade -y && sudo apt-get dist-upgrade -y && sudo apt-get autoclean && sudo apt-get autoremove" | |
| alias paste="nc termbin.com 9999" | |
| alias aliases="cat ~/.bash_aliases" | |
| alias ra="source ~/.bash_aliases" | |
| alias ea="sudo vi ~/.bash_aliases ; source ~/.bash_aliases" | |
| # Screen | |
| alias sl="screen --list" | |
| ### SSH |
| alias li="screen -r irssi" | |
| alias rosu="sudo nano /sys/class/leds/led1/brightness" | |
| alias temp="/opt/vc/bin/vcgencmd measure_temp" | |
| alias kstop="sudo systemctl stop mediacenter" | |
| alias kstart="sudo systemctl start mediacenter" | |
| alias paste="nc termbin.com 9999" | |
| export LC_ALL="en_US.UTF-8" | |
| alias tstop="sudo systemctl stop transmission" | |
| alias tstart="sudo systemctl start transmission" | |
| alias treload="sudo systemctl reload transmission" |