全文検索:
- Formatting Syntax @wiki
- ection name behind a hash character as known from HTML. This links to [[syntax#internal|this Section]]. ... haracters or strings into images or other text or HTML. The text to image conversion is mainly done for smileys. And the text to HTML conversion is used for typography replacements, but can be configured to use other HTML as well. ==== Text to Image Conversions ==== Do
- 08 docker-compose Nginx @06_virtualization:05_container
- 0" volumes: - ./public:/usr/share/nginx/html </code> ===== Nginx + SSL ===== <code|docker-co... - ./nginx/conf.d:/etc/nginx/conf.d - ./nginx/html:/var/www/html </code> ==== フォルダ/ファイル用意 ==== <code> mkdir -p nginx/conf.d mkdir -p nginx/html hostname > nginx/html/index.html cat << __EOM__
- 10 Docker Let's Encrypt @06_virtualization:05_container
- etc/letsencrypt:/etc/letsencrypt - /var/www/html:/var/www/html ports: - 80:80 #network_mode: host certbot: image: certbot/certbot ... etc/letsencrypt:/etc/letsencrypt - /var/www/html:/var/www/html command: ["--version"] network_mode: host </code> ===== Nginxのdefault.conf用意 ===
- code2 @dokuwiki:plugin
- ng) with a footer line of ”A description”. <code html> some text </code> (basic) turns on HTML highlighting for ”some text”. <code html 1> some text </code> (extended) turns on HTML highlighting for ”some text” with added line numbers star
- 33 Let's Encrypt リバースプロキシ(手動板)+ GitLab @06_virtualization:05_container
- 示させる場合 #location / { # root /var/www/html; # index index.html index.htm; #} location / { return 403; } # 全ての... ell-known/acme-challenge/ { root /var/www/html; } } # gitlab.fl8.jp/ upstream gitlab.fl8.jp... est off; allow all; root /usr/share/nginx/html; try_files $uri =404; break; } ## End of
- 28 Laravel Voyager フロントページ用意 @11_php:02_framework:01_laravel
- <code|resources/views/home.blade.php> <!DOCTYPE html> <html> <head> <title>Homepage</title> <link rel="stylesheet" type="text/css" href="https://cdnjs.clo... </div> @endforeach </div> </div> </body> </html> </code> === 4.ページ完成 === URL: http://hogehoge.... <code|resources/views/post.blade.php> <!DOCTYPE html> <html> <head> <title>{{ $post->title }}</title>
- 2022.03.16 Docker compose Permission denied @50_dialy:2022:03
- 0" volumes: - ./public:/usr/share/nginx/html </code> ===== Permission denied ===== コンテナにログイン... bash root@a107d04ed12b:/# ls -al /usr/share/nginx/html/ ls: cannot open directory '/usr/share/nginx/html/': Permission denied root@a107d04ed12b:/# ls /usr/share/nginx/html/ -al ls: cannot access '/usr/share/nginx/html/ind
- 2022.10.01 Nextcloud @50_dialy:2022:10
- always volumes: - ./nextcloud:/var/www/html environment: - MYSQL_HOST=db - RE... always volumes: - ./nextcloud:/var/www/html:ro environment: - VIRTUAL_HOST=nextclou... always volumes: - ./nextcloud:/var/www/html entrypoint: /cron.sh depends_on: - ... rts:ro - vhost.d:/etc/nginx/vhost.d - html:/usr/share/nginx/html - /var/run/docker.soc
- 10 Zend Framework @11_php:02_framework
- [[http://www.zendframework.com/manual/ja/manual.html]] ====== インストール ====== ===== ダウンロード ===== [[ht... て説明します。 ApacheのDocumentRootは「/home/matsui/public_html」です。 <code> /home/matsui/ | |... |__index.phtml |__public_html/ | |_... |__.htaccess </code> ===== public_html/index.php ===== <code> <?php require_once('Zend/
- 2024.03.05 VBA Selenium ログイン @50_dialy:2024:03
- Dim Driver As New Selenium.WebDriver Dim HTMLDoc As Object Dim ID As String Dim Pass As... lementById("wp-submit").Click End With ' HTMLDocオブジェクトを作成 Set HTMLDoc = CreateObject("htmlfile") ' クリック後のHTMLを取得 HTMLDoc.body.innerHTML = Driver.PageSource
- 01 Wget @02_freebsd:01_net
- console> wget http://flateight.com/~matsui/index.html </code> http://flateight..../index.htmlのみをダウンロードする。 ○基本2 <code console> wget -r http://flateight.com/~matsui/index.html </code> http://flateight..../index.htmlから再帰回収(-r)でホームページをダウンロードする。 つまり、ホームページをまるごと自分のディスクに持って来る。 また、深さ
- 09 Dockerリバースプロキシ(HTTPS) @06_virtualization:05_container
- volumes: - vhost:/etc/nginx/vhost.d - html:/usr/share/nginx/html - /var/run/docker.sock:/tmp/docker.sock:ro - ./certs:/etc/nginx/certs... volumes: - vhost:/etc/nginx/vhost.d - html:/usr/share/nginx/html - /var/run/docker.sock:/var/run/docker.sock:ro - ./certs:/etc/nginx/c
- 13 Kubernetes Nginxを立ててみる @06_virtualization:05_container
- db-pjql2 -- bash echo pod1 | tee /usr/share/nginx/html/index.html exit kubectl exec -it nginx-6c57499ddb-tfghq -- bash echo pod2 | tee /usr/share/nginx/html/index.html exit kubectl exec -it nginx-6c57499ddb-zg88c -- bash echo pod3 | tee /usr/share/nginx/html
- 25 Let's Encrypt リバースプロキシ @06_virtualization:05_container
- rts:ro - vhost.d:/etc/nginx/vhost.d - html:/usr/share/nginx/html - /var/run/docker.sock:/tmp/docker.sock:ro - ./server.conf:/etc/nginx... cme.sh - vhost.d:/etc/nginx/vhost.d - html:/usr/share/nginx/html - /var/run/docker.sock:/var/run/docker.sock:ro networks: - proxy-
- 05 FormServiceProvider @11_php:02_framework
- ay the form return $app['twig']->render('form.html.twig', array('form' => $form->createView())); }); $app->run(); </code> ・form.html.twig <code> <html> <body> フォームテスト <form action="#" method="post"> {{ form_widget(form) }} <inp... type="submit" name="submit" /> </form> </body> </html> </code> ===== エラー ===== <code console> Twig_Err