Команда для установки DocumentRoot для апача на Debian?

Я считаю, что вы можете использовать вместо этого . Это в Repos Debian 7.7.

$ apt-cache search pmount
libpmount-dev - portable mount library - development files
libpmount0.0 - portable mount library - shared library
pmount - mount removable devices as normal user

Использование

$ pmount -h
Usage:

pmount [options] <device> [<label>]

  Mount <device> to a directory below /media/ if policy requirements
  are met (see pmount(1) for details). If <label> is given, the mount point
  will be /media/<label>, otherwise it will be /media/<device>.
  If the mount point does not exist, it will be created.

pmount --lock <device> <pid>
  Prevent further pmounts of <device> until it is unlocked again. <pid>
  specifies the process id the lock holds for. This allows to lock a device
  by several independent processes and avoids indefinite locks of crashed
  processes (nonexistant pids are cleaned before attempting a mount).

pmount --unlock <device> <pid>
  Remove the lock on <device> for process <pid> again.

Options:
  -r          : force <device> to be mounted read-only
  -w          : force <device> to be mounted read-write
  -s, --sync  : mount <device> with the 'sync' option (default: 'async')
  -A, --noatime
                mount <device> with the 'noatime' option (default: 'atime')
  -e, --exec  : mount <device> with the 'exec' option (default: 'noexec')
  -t <fs>     : mount as file system type <fs> (default: autodetected)
  -c <charset>: use given I/O character set (default: 'utf8' if called
                in an UTF-8 locale, otherwise mount default)
  -u <umask>  : use specified umask instead of the default (only for
                file sytems which actually support umask setting)
  --fmask <fmask>
                use specified fmask
  --dmask <dmask>
                use specified dmask
  -p <file>, --passphrase <file>
                read passphrase from file instead of the terminal
                (only for LUKS encrypted devices)
  -d, --debug : enable debug output (very verbose)
  -h, --help  : print this help message and exit successfuly
  -V, --version
                print version number and exit successfully

Пример

Для монтирования устройства:

$ pmount /dev/sdb1

, чтобы размонтировать

$ pumount /dev/sdb1
0
13.08.2016, 19:41
1 ответ

Стандартный вид Debian. Для этого является предоставление полной конфигурации виртуальной хост в качестве нового файла в / etc / apache2 / доступных на сайтах , а затем включить его с использованием A2ensite ( И, возможно, отключить по умолчанию A2DiSSite ).

Итак, вы бы создали сказать /etc/apache2/sites-Available/bticino.conf , содержащие

<VirtualHost *:80>
    DocumentRoot /home/pi/bticino
    ErrorLog ${APACHE_LOG_DIR}/bticino-error.log
    CustomLog ${APACHE_LOG_DIR}/bticino-access.log combined
</VirtualHost>

, затем запустить

a2dissite 000-default
a2ensite bticino
service apache2 reload

все как root.

2
28.01.2020, 02:36

Теги

Похожие вопросы